-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.93 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
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
{
"name": "HR4R-hot-reloading-for-RequireJS",
"version": "0.0.5",
"private": true,
"config": {
"if-present": false
},
"scripts": {
"prestart": "",
"start": "node ./bin/www",
"start_prod": "NODE_ENV=production node ./bin/www",
"start_windows_dev": "set NODE_ENV=development&&nodemon",
"start_windows_prod": "set NODE_ENV=production&&node ./bin/www",
"startdev": "NODE_ENV=development && node ./bin/www",
"start_dev": "NODE_ENV=development && nodemon",
"build": "r.js -o ./build/build.js",
"build_windows": "r.js.cmd -o ./build/build.js",
"eslint_nodejs": "eslint --config ./node.eslintrc --ignore-path ./node.eslintignore .",
"eslint_browser": "eslint --config ./browser.eslintrc --ignore-path ./browser.eslintignore ./public",
"gzip": "gzip -9 ./public/static/app/optimized/optimized.js"
},
"dependencies": {
"app-root-path": "^1.0.0",
"async": "^1.4.0",
"bcrypt": "^0.8.4",
"body-parser": "^1.13.2",
"cluster": "^0.7.7",
"colors": "^1.1.0",
"connect": "^3.3.5",
"connect-mongo": "^0.8.1",
"connect-redis": "^2.4.1",
"cookie": "^0.1.3",
"cookie-parser": "^1.3.5",
"ejs": "^2.3.1",
"events": "^1.0.2",
"express": "^4.13.1",
"express-session": "^1.11.3",
"gulp": "^3.9.0",
"idempotent-json": "^0.8.9",
"mongoose": "^4.1.0",
"mongoose-validate": "0.0.5",
"morgan": "^1.6.1",
"nconf": "^0.7.2",
"object-sizeof": "^1.0.6",
"passport": "^0.2.2",
"passport-custom": "^1.0.1",
"passport-local": "^1.0.0",
"redis": "^0.12.1",
"replacestream": "^4.0.0",
"request": "^2.60.0",
"serve-favicon": "^2.3.0",
"underscore": "^1.8.3",
"univ-config": "^1.0.5",
"util": "^0.10.3"
},
"devDependencies": {
"debug": "^2.2.0",
"gulp": "^3.9.0",
"gulp-nodemon": "^2.0.4",
"gulp-react": "^3.0.1",
"mocha": "^2.2.5",
"requirejs-metagen": "^1.1.4",
"socket.io": "^1.3.7"
}
}