-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 KB
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
{
"name": "express-starter",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/robert52/express-starter.git"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"start": "node app.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",
"less": "node_modules/.bin/autoless public/assets/less public/assets/css --no-watch",
"less-watch": "node_modules/.bin/autoless public/assets/less public/assets/css"
},
"dependencies": {
"async": "^0.9.2",
"body-parser": "^1.14.1",
"connect-mongo": "^0.8.2",
"express": "^4.13.3",
"express-session": "^1.11.3",
"express-validator": "^2.17.1",
"lodash": "^3.10.1",
"method-override": "^2.3.5",
"mongoose": "^4.1.12",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"serve-static": "^1.10.0",
"swig": "^1.4.2"
},
"devDependencies": {
"autoless": "^0.1.7",
"chai": "^2.3.0",
"chai-things": "^0.2.0",
"mocha": "^2.3.3",
"request": "^2.55.0"
}
}