-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hacknical-github",
"version": "0.0.5",
"description": "GitHub data server for hacknical & jarvim",
"main": "dist/index.js",
"scripts": {
"build-app": "babel app -d dist --copy-files",
"start-dev": "bnr local:app:start",
"deploy": "git checkout master && git pull origin master && npm i && npm i --only=dev && npm run stop && npm run build-app && npm run start",
"start": "bnr pro:app:start",
"stop": "bnr pro:app:stop"
},
"betterScripts": {
"pro:app:start": {
"command": "forever start --killSignal=SIGTERM -a -l /var/log/ecmadao/hacknical-github/forever_log -e /var/log/ecmadao/hacknical-github/error_log dist/index.js",
"env": {
"NODE_ENV": "production"
}
},
"pro:app:stop": {
"command": "forever stop dist/index.js",
"env": {
"NODE_ENV": "production"
}
},
"local:app:start": {
"command": "./node_modules/.bin/nodemon app/bin/index.js",
"env": {
"DEBUG": "hacknical-github-local*",
"NODE_ENV": "localdev"
}
}
},
"repository": {
"url": "git+https://github.com/ecmadao/hacknical-github.git",
"type": "git"
},
"author": "ecmadao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ecmadao/hacknical-github/issues"
},
"homepage": "https://github.com/ecmadao/hacknical-github#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"better-npm-run": "0.0.13",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.10.2"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"babel-core": "^6.14.0",
"babel-polyfill": "^6.16.0",
"cache-manager": "^2.4.0",
"config": "^1.21.0",
"crypto": "0.0.3",
"graphql-request": "^1.3.3",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.4.0",
"log4js": "^1.1.1",
"moment": "^2.17.0",
"mongodb": "^2.2.31",
"mq-utils": "0.1.0",
"request": "^2.75.0"
}
}