-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
38 lines (38 loc) · 902 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "pricing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon index.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"supertest": "^4.0.2"
},
"dependencies": {
"@sentry/node": "^5.2.0",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"joi": "^14.3.1",
"moment": "^2.24.0",
"mongoose": "^5.5.6",
"nodemon": "^1.19.0",
"pino": "^5.12.3",
"pino-pretty": "^3.0.0",
"redis": "^2.8.0"
}
}