-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 855 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 855 Bytes
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
{
"name": "code-script",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "",
"test-integration": "mocha --opts test/integration/mocha.opts test/integration/*.js",
"test-unit": "",
"test-contract": "",
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix"
},
"dependencies": {
"body-parser": "~1.15.1",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.13.4",
"mongoose": "^4.6.0",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
}
}