forked from genediazjr/selfielog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "selfielog",
"main": "app/server.js",
"author": "LetsBlumIt Corp.",
"version": "0.2.1",
"private": true,
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"dev": "nodemon app/server.js",
"prod": "forever -l /home/admin/logs/selfielog.log -a start app/server.js",
"check": "jscs ./ && jshint ./",
"restart": "forever restart 0",
"shutdown": "forever stopall"
},
"dependencies": {
"chalk": "1.0.x",
"redis": "0.12.x",
"hashids": "1.0.x",
"hiredis": "0.3.x",
"aws-sdk": "2.1.x",
"express": "4.12.x",
"forever": "0.14.x",
"imagemin": "3.1.x",
"multiparty": "4.1.x",
"body-parser": "1.12.x",
"json-stringify-safe": "5.0.x",
"binaryjs": "0.2.x"
},
"devDependencies": {
"jscs": "1.12.x",
"chai": "2.2.x",
"mocha": "2.2.x",
"jshint": "2.6.x",
"nodemon": "1.3.x",
"istanbul": "0.3.x",
"coveralls": "2.11.x"
},
"repository": "letsblumit/selfielog"
}