mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "commons-server",
|
|
"description": "Ocean Protocol marketplace backend.",
|
|
"version": "0.4.5",
|
|
"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.17.1",
|
|
"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/jest": "^24.0.13",
|
|
"@types/morgan": "^1.7.35",
|
|
"@types/node": "^11.13.4",
|
|
"@types/request": "^2.48.1",
|
|
"@types/supertest": "^2.0.7",
|
|
"jest": "^24.8.0",
|
|
"nodemon": "^1.19.1",
|
|
"supertest": "^4.0.2",
|
|
"ts-jest": "^24.0.2",
|
|
"ts-node": "^8.2.0",
|
|
"typescript": "3.4.5"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oceanprotocol/commons"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest"
|
|
}
|
|
}
|