-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "dumper",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"eslint": "eslint controllers helper model app.js db.js server.js",
"test": "mocha",
"test:watch": "mocha --watch",
"debug": "nodemon ./server.js",
"start": "node ./server.js"
},
"author": "Xiaofeng Wang",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"mongoose": "^4.11.13",
"morgan": "^1.8.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"mocha": "^3.5.3",
"nodemon": "^1.11.0",
"sinon": "^4.0.0",
"sinon-mongoose": "^2.0.2"
},
"eslintConfig": {
"plugins": [
"jest"
],
"extends": "airbnb",
"rules": {
"no-console": 0,
"no-unused-expressions": [
2,
{
"allowShortCircuit": true
}
]
},
"env": {
"jest/globals": true
}
}
}