-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 968 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
35
36
37
38
39
40
41
{
"name": "developers-dictionary",
"version": "0.0.0",
"private": true,
"engines": {
"node": "8.9.4"
},
"scripts": {
"start": "node ./bin/run.js",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"body-parser": "~1.16.0",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chosen-js": "^1.6.2",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"ejs": "~2.5.5",
"express": "~4.14.1",
"express-ejs-layouts": "^2.2.0",
"express-session": "^1.15.1",
"express-validator": "^3.1.2",
"mocha": "^3.2.0",
"mongodb": "^2.2.24",
"monk": "^4.0.0",
"morgan": "~1.10.0",
"node-mongo-seeds": "^2.3.1",
"nodemon": "^1.11.0",
"serve-favicon": "~2.3.2",
"should": "^11.2.1",
"zombie": "^5.0.5"
},
"devDependencies": {
"coveralls": "^2.12.0",
"nyc": "^10.1.2"
}
}