-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
51
52
{
"name": "mad",
"version": "1.0.0",
"description": "marathon application dashboard",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development `npm bin`/nodemon index.js | `npm bin`/bunyan",
"prod": "npm run prod:start && npm run prod:log",
"prod:start": "NODE_ENV=production `npm bin`/pm2 start index.js --name mad",
"prod:log": "`npm bin`/pm2 log --raw mad"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agate/mad.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/agate/mad/issues"
},
"homepage": "https://github.com/agate/mad#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"ejs": "^2.5.6",
"influx": "^5.0.7",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.0",
"koa-bunyan-logger": "^2.0.0",
"koa-cache-control": "^2.0.0",
"koa-qs": "^2.0.0",
"koa-response-time": "^2.0.0",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"koa-views": "^6.1.4",
"lodash": "^4.17.11",
"pm2": "^2.6.1",
"prom-client": "^11.1.1",
"pug": "^2.0.0-rc.2"
},
"devDependencies": {
"array-flatten": "^2.1.1",
"nodemon": "^1.18.4",
"request": "^2.88.0",
"zlib": "^1.0.5"
}
}