mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "commons-server",
|
|
"description": "Ocean Protocol marketplace backend.",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"start": "nodemon --exec ts-node src/server.ts",
|
|
"serve": "node dist/server.js",
|
|
"build": "tsc",
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --coverage --watch",
|
|
"coverage": "cat coverage/lcov.info | codacy-coverage --token 8801f827fe1144ffa85cd7da94f2bbf7"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.18.3",
|
|
"compression": "^1.7.4",
|
|
"debug": "^4.1.1",
|
|
"express": "^4.16.4",
|
|
"express-validator": "^5.3.1",
|
|
"morgan": "^1.9.1",
|
|
"request": "^2.88.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.17.0",
|
|
"@types/compression": "0.0.36",
|
|
"@types/debug": "^4.1.4",
|
|
"@types/express": "^4.16.1",
|
|
"@types/jasmine": "^3.3.12",
|
|
"@types/jest": "^24.0.11",
|
|
"@types/morgan": "^1.7.35",
|
|
"@types/node": "^11.13.4",
|
|
"@types/request": "^2.48.1",
|
|
"jasmine": "^3.4.0",
|
|
"jest": "^24.7.1",
|
|
"nodemon": "^1.18.11",
|
|
"supertest": "^4.0.2",
|
|
"ts-jest": "^24.0.2",
|
|
"ts-node": "^8.1.0",
|
|
"typescript": "^3.4.5"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oceanprotocol/commons"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest"
|
|
}
|
|
}
|