-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.16 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
{
"author": "[email protected]",
"license": "MIT",
"name": "node-survey",
"version": "1.0.0",
"title": "Node Survey",
"description": "A basic Node.js survey example.",
"main": "app.js",
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sgarbesi/node-survey.git"
},
"scripts": {
"dev": "pm2 start ./config/local.json --no-daemon --watch",
"postinstall": "node ./script/setup.js && node ./script/sync.js",
"setup": "node ./script/setup.js",
"start": "pm2 start ./config/local.json --no-daemon",
"sync": "node ./script/sync.js",
"test": "eslint ."
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.1",
"eslint": "^2.5.1",
"esprima": "^2.7.2",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-load": "^1.1.15",
"express-session": "^1.13.0",
"glob": "^7.0.3",
"lodash": "^3.10.1",
"method-override": "^2.3.5",
"morgan": "^1.7.0",
"mysql": "^2.10.2",
"pm2": "^1.0.2",
"prompt": "^1.0.0",
"sequelize": "^3.20.0",
"through": "^2.3.8"
},
"engines": {
"node": ">=0.10.0"
}
}