-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 KB
/
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
39
40
41
42
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/app.js --exec \"npm run lint && node\"",
"test": "export NODE_ENV=test || SET NODE_ENV=test && mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"seed": "node seed"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"express": "^4.16.4",
"joi": "^14.0.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mongodb": "^3.1.8",
"mongoose": "^5.3.7",
"morgan": "^1.9.1",
"validator": "^5.6.0"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"expect": "^22.4.3",
"jest": "^22.4.3",
"nodemon": "^1.11.0",
"supertest": "^3.3.0"
}
}