forked from azooinmyluggage/fabrikam-node-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 872 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
{
"name": "fabrikam-node-api",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"test": "mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration"
},
"dependencies": {
"express": "^4.13.3",
"serve-favicon": "^2.3.0",
"morgan": "^1.6.1",
"cookie-parser": "^1.3.3",
"body-parser": "^1.13.3",
"jade": "^1.11.0"
},
"devDependencies": {
"chai": "^3.5.0",
"debug": "^2.2.0",
"grunt": "^1.0.1",
"grunt-develop": "^0.4.0",
"grunt-contrib-watch": "^1.0.0",
"request": "^2.60.0",
"time-grunt": "^1.2.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"supertest": "^2.0.0"
}
}