-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
46
47
48
49
50
{
"name": "GIFts",
"version": "0.0.5",
"description": "Give the gift of gifs on Slack (Giphy alternative)",
"main": "index.js",
"scripts": {
"start": "$(npm bin)/pm2 start ecosystem.json --env development",
"start:prod": "$(npm bin)/pm2 start ecosystem.json --env production --no-daemon",
"stop": "$(npm bin)/pm2 stop GIFts && $(npm bin)/pm2 delete GIFts",
"restart": "$(npm bin)/pm2 restart GIFts",
"status": "$(npm bin)/pm2 status",
"logs": "$(npm bin)/pm2 logs",
"logs:flush": "$(npm bin)/pm2 flush",
"update": "$(npm bin)/pm2 update",
"test": "$(npm bin)/ava -v -r babel-register"
},
"repository": {
"type": "git",
"url": "https://github.com/preichelt/GIFts.git"
},
"author": "Phillip Reichelt <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-preset-node5": "^11.0.1",
"babel-register": "^6.7.2",
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"cors": "^2.7.1",
"express": "^4.13.4",
"lodash": "^4.9.0",
"pm2": "^1.1.1",
"request-promise": "^2.0.1"
},
"bugs": {
"url": "https://github.com/preichelt/GIFts/issues"
},
"homepage": "https://github.com/preichelt/GIFts",
"keywords": [
"gifs",
"imgur",
"gfycat",
"reddit",
"slack",
"giphy"
],
"devDependencies": {
"ava": "^0.14.0",
"supertest": "^1.2.0"
}
}