commons/server/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

{
2019-03-24 02:10:00 +01:00
"name": "commons-marketplace-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",
"compression": "^1.7.3",
"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",
"@types/debug": "^4.1.1",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/jasmine": "^3.3.9",
"@types/jest": "^24.0.5",
"@types/morgan": "^1.7.35",
"@types/node": "^11.9.4",
"@types/request": "^2.48.1",
"chai": "^4.2.0",
"jest": "^24.1.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"supertest": "^3.4.2",
"ts-jest": "^24.0.0",
2019-03-25 12:06:26 +01:00
"ts-node": "^8.0.2",
"typescript": "^3.3.4000"
},
2019-03-25 13:13:55 +01:00
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/commons-marketplace"
},
"jest": {
"preset": "ts-jest"
}
}