commons/server/package.json

57 lines
1.4 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.",
2020-05-19 19:00:51 +02:00
"version": "2.4.1",
2019-03-25 13:13:55 +01:00
"license": "Apache-2.0",
2019-07-09 15:56:38 +02:00
"main": "dist/src/server.js",
"scripts": {
2019-04-12 16:26:13 +02:00
"start": "nodemon --exec ts-node src/server.ts",
2019-07-09 15:56:38 +02:00
"serve": "node dist/src/server.js",
2019-03-24 02:10:00 +01:00
"build": "tsc",
"test": "jest --coverage --silent",
2020-05-19 09:46:39 +02:00
"test:watch": "jest --coverage --watch"
},
"dependencies": {
"@sendgrid/mail": "^7.2.0",
2020-03-17 11:54:46 +01:00
"body-parser": "^1.19.0",
2019-04-01 12:01:22 +02:00
"compression": "^1.7.4",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"morgan": "^1.10.0",
2020-03-16 11:48:08 +01:00
"request": "^2.88.2"
},
"devDependencies": {
2020-03-16 11:48:08 +01:00
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
2019-09-02 13:11:08 +02:00
"@types/debug": "^4.1.5",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.13",
"@types/request": "^2.48.5",
"@types/supertest": "^2.0.9",
2020-01-31 18:25:39 +01:00
"jest": "24.9.0",
"nodemon": "^2.0.4",
2019-04-01 12:01:22 +02:00
"supertest": "^4.0.2",
2020-01-31 18:25:39 +01:00
"ts-jest": "24.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
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",
2020-01-31 18:25:39 +01:00
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
}
}