-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 975 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
39
40
{
"name": "codebase-2pai",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"eslint": "eslint bin test",
"eslint:fix": "eslint bin test . --fix",
"test": "jest test"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-auth-parser": "^0.1.2",
"express-query-parser": "^1.0.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.10",
"nodemon": "~1.18.9",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"validate.js": "^0.12.0",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"supertest": "^3.3.0"
}
}