commons/server/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

{
2019-04-03 14:40:31 +02:00
"name": "commons-server",
2019-03-25 13:13:55 +01:00
"description": "Ocean Protocol marketplace backend.",
"version": "1.0.0",
2019-03-25 13:13:55 +01:00
"license": "Apache-2.0",
2019-03-24 02:10:00 +01:00
"main": "dist/index.js",
"scripts": {
2019-03-24 02:10:00 +01:00
"start": "node dist/index.js",
"start-watch": "nodemon",
2019-03-24 02:10:00 +01:00
"build": "tsc",
"watch": "tsc -w",
"test": "jest --coverage",
2019-03-24 02:10:00 +01:00
"watch-test": "npm run test --watchAll"
},
"dependencies": {
"body-parser": "^1.18.3",
"color-js": "^1.0.5",
2019-04-01 12:01:22 +02:00
"compression": "^1.7.4",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"lusca": "^1.6.1",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"request": "^2.88.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
2019-04-01 12:01:22 +02:00
"@types/debug": "^4.1.3",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
2019-04-01 12:01:22 +02:00
"@types/jasmine": "^3.3.12",
"@types/jest": "^24.0.11",
"@types/morgan": "^1.7.35",
2019-04-09 18:24:04 +02:00
"@types/node": "^11.13.2",
"@types/request": "^2.48.1",
"chai": "^4.2.0",
2019-04-08 11:04:52 +02:00
"jest": "^24.7.1",
2019-04-09 18:24:04 +02:00
"mocha": "^6.1.2",
"nodemon": "^1.18.11",
2019-04-01 12:01:22 +02:00
"supertest": "^4.0.2",
2019-04-08 11:04:52 +02:00
"ts-jest": "^24.0.2",
2019-04-01 12:01:22 +02:00
"ts-node": "^8.0.3",
2019-04-08 11:04:52 +02:00
"typescript": "^3.4.2"
},
2019-03-25 13:13:55 +01:00
"repository": {
"type": "git",
2019-04-03 14:40:31 +02:00
"url": "https://github.com/oceanprotocol/commons"
2019-03-25 13:13:55 +01:00
},
"jest": {
"preset": "ts-jest"
}
}