-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "express-seed",
"version": "1.0.0",
"description": "Seed for express applications.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test:watch": "NODE_ENV=test mocha --watch './{,!(node_modules)/**}/*.spec.js'",
"test": "NODE_ENV=test mocha './{,!(node_modules)/**}/*.spec.js'"
},
"author": "Yishai Zehavi ([email protected])",
"license": "MIT",
"_moduleAliases": {
"@lib": "./lib",
"@utils": "./lib/utils",
"@config": "./config"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cluster-service": "^2.1.1",
"compression": "^1.7.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"debug": "^4.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"glob": "^7.1.2",
"helmet": "^3.13.0",
"lodash.iserror": "^3.1.1",
"lodash.merge": "^4.6.1",
"lusca": "^1.6.0",
"method-override": "^3.0.0",
"module-alias": "^2.1.0",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"pug": "^2.0.3",
"serve-favicon": "^2.5.0",
"stringify-object": "^3.2.2",
"supports-color": "^5.5.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"sinon": "^7.1.1"
}
}