-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1011 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
35
{
"name": "movies",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"tdd": "nodemon --watch ./ --exec 'mocha test/unit' --delay 1 ./bin/www",
"test": "npm run test:wmu && npm run test:acceptance",
"test:acceptance": "NODE_ENV=test protractor test/acceptance/config.js",
"test:integration": "NODE_ENV=test mocha test/integration --recursive",
"test:unit": "NODE_ENV=test mocha test/unit/ --recursive",
"test:wmu": "webdriver-manager update"
},
"dependencies": {
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.14.0",
"jade": "~1.11.0",
"method-override": "^2.3.7",
"mongodb": "^2.2.21",
"monk": "^3.1.3",
"morgan": "~1.7.0",
"node-statsd": "^0.1.1",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"jasmine": "^2.5.3",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"protractor": "^5.0.0",
"supertest": "^2.0.1"
}
}