-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "express-boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"rebuilder": "webpack --watch",
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:production": "npm run build:prod",
"dev": "cross-env NODE_ENV=development nodemon",
"production": "cross-env NODE_ENV=production node",
"test": "echo lol",
"increase-memory": "node --max-old-space-size=4096 build/server.js"
},
"dependencies": {
"basic-auth": "^1.1.0",
"bluebird": "^3.4.7",
"body-parser": "~1.15.1",
"compression": "^1.6.2",
"connect-timeout": "^1.8.0",
"cookie-parser": "~1.4.3",
"csurf": "^1.9.0",
"death": "^1.0.0",
"debug": "^2.6.0",
"express": "^4.14.0",
"express-mysql-session": "^1.2.0",
"express-redirect": "^1.2.2",
"express-session": "^1.14.2",
"express-urlrewrite": "^1.2.0",
"file-stream-rotator": "^0.0.7",
"forcedomain": "^0.8.0",
"hard-rejection": "^0.1.0",
"helmet": "^3.3.0",
"http-errors": "^1.5.1",
"jade": "~1.11.0",
"json5": "^0.5.1",
"knex": "^0.12.6",
"lodash": "^4.17.4",
"morgan": "~1.7.0",
"mysql2": "^1.1.2",
"nconf": "^0.8.4",
"node-uuid": "^1.4.7",
"path-exists": "^3.0.0",
"portastic": "^1.0.1",
"response-time": "^2.3.2",
"tracer": "^0.8.7",
"vhost": "^3.0.2",
"yargs": "^6.6.0"
},
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-closure-elimination": "^1.1.14",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.6",
"circular-dependency-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.4",
"glob": "^7.1.1",
"json5-loader": "^0.6.0",
"nodemon": "^1.11.0",
"pm2": "^2.2.3",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.1.5",
"source-map-support": "^0.4.8",
"webpack": "2.2.0-rc.3"
}
}