forked from brettstack/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "rpg-server",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node apiServer.js",
"start-debug": "set DEBUG=*,-express:router*,-express:application & node-debug --no-preload --debug-brk true --save-live-edit %appdata%\\npm\\node_modules\\gulp\\bin\\gulp.js develop",
"start-debug2": "node-inspector & nodemon --debug apiServer.js localhost 5000",
"test": "mocha",
"install-local": "npm install -g mocha & npm install -g node-inspector & npm install"
},
"engines": {
"node": "0.10.31"
},
"dependencies": {
"async": "~0.9.0",
"aws-sdk": "~2.1.6",
"bcryptjs": "~2.1.0",
"body-parser": "~1.10.0",
"cluster-service": "~1.0.5",
"compression": "~1.2.2",
"cookie-parser": "~1.3.3",
"cors": "~2.5.3",
"debug": "~2.1.1",
"engine.io": "~1.5.1",
"epilogue": "~0.5.0",
"express": "~4.10.6",
"express-validator": "~2.8.0",
"glob": "~4.3.1",
"globby": "~1.1.0",
"helmet": "~0.5.4",
"jsonwebtoken": "~3.2.2",
"lodash": "~2.4.1",
"mandrill-api": "~1.0.41",
"method-override": "~2.3.0",
"moment": "~2.9.0",
"morgan": "~1.5.0",
"nodemailer": "~1.3.0",
"passport": "~0.2.1",
"passport-facebook": "~1.0.3",
"passport-google": "~0.3.0",
"passport-google-oauth": "~0.1.5",
"passport-local": "~1.0.0",
"pg": "~4.2.0",
"pg-hstore": "~2.3.1",
"primus": "~2.4.12",
"request": "~2.51.0",
"satellizer": "~0.8.8",
"sequelize": "~2.0.0-rc8",
"ws": "~0.7.1"
},
"devDependencies": {
"gulp": "~3.8.10",
"gulp-livereload": "~2.1.1",
"gulp-nodemon": "~1.0.4",
"gulp-sass": "~1.2.4",
"supertest": "~0.15.0",
"chai": "~1.10.0",
"mocha": "~2.1.0"
}
}