-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "express-api-starter",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/robert52/express-api-starter.git"
},
"engines": {
"node": ">=4.2.6"
},
"scripts": {
"start": "node server.js",
"unit": "mocha tests/unit/ --ui bdd --recursive --reporter spec --timeout 10000 --slow 900",
"integration": "mocha tests/integration/ --ui bdd --recursive --reporter spec --timeout 10000 --slow 900"
},
"dependencies": {
"async": "^0.9.2",
"body-parser": "^1.14.1",
"connect-mongo": "^0.8.2",
"express": "^4.13.3",
"express-session": "^1.12.1",
"express-validator": "^2.18.0",
"lodash": "^3.10.1",
"method-override": "^2.3.5",
"mongoose": "^4.2.8",
"morgan": "^1.6.1",
"passport": "^0.2.2",
"passport-http": "^0.2.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"winston": "^2.1.1"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-things": "^0.2.0",
"mocha": "^2.3.3",
"request": "^2.55.0"
}
}