-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.13 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "task-manager-api",
"version": "0.0.1",
"description": "tasks manager api",
"main": "./src/app.js",
"scripts": {
"start": "nodemon ./src/app.js",
"test": "\"SET NODE_ENV=test\" && mocha ./src/**/*.test.js",
"test-watch": "nodemon --exec \"npm test\""
},
"author": "Nikolay Martynov",
"license": "MIT",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"mocha": true,
"node": true
},
"globals": {
"include": true
},
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"log"
]
}
]
}
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"cors": "^2.8.3",
"express": "^4.15.2",
"jsonwebtoken": "^7.4.0",
"lodash": "^4.17.4",
"mongoose": "^4.9.4",
"validator": "^7.0.0"
}
}