forked from zzo/baseapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "YOUR_APP",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node_modules/.bin/forever -a -p logs --minUptime 2000 --spinSleepTime 1000 -l forever.log -o logs/out.log -e logs/err.log start app.js",
"stop": "node_modules/.bin/forever stop app.js",
"test": "grunt test"
},
"dependencies": {
"express": "3.2.5",
"dustjs-linkedin": "~1.2.4",
"consolidate": "~0.9.1",
"redis": "~0.8.3",
"connect-redis": "~1.4.5",
"uuid": "~1.4.1",
"bunyan": "~0.21.3",
"forever": "~0.10.8"
},
"devDependencies": {
"jasmine-node": "~1.9.1",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.5.4",
"grunt-contrib-jasmine": "~0.4.2",
"grunt-jasmine-node": "~0.1.0",
"grunt-express": "~0.3.6",
"grunt-dustjs": "~0.2.2",
"grunt-template-jasmine-istanbul": "~0.2.4",
"webdriverjs": "~0.7.8",
"grunt-env": "~0.4.0",
"istanbul": "~0.1.36",
"istanbul-middleware": "~0.1.0",
"karma": "~0.8.5",
"grunt-contrib-watch": "~0.4.4",
"grunt-plato": "~0.2.0",
"matchdep": "~0.1.2",
"grunt-cli": "~0.1.9"
}
}