-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "steem-rss",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"start": "export NODE_ENV=production && pm2 start lib/app.js",
"build": "babel src --out-dir lib --plugins=babel-plugin-transform-runtime,transform-function-bind,transform-regenerator",
"debug": "nodemon --exec babel-node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imkimchi/steem-rss.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/imkimchi/steem-rss/issues"
},
"homepage": "https://github.com/imkimchi/steem-rss#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-3": "^6.24.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"koa": "^2.2.0",
"koa-compose": "^4.0.0",
"koa-logger": "^3.0.0",
"koa-router": "^7.2.0",
"koa-static": "^3.0.0",
"path": "^0.12.7",
"pm2": "^2.9.1",
"rss": "^1.2.2",
"steem": "^0.6.7"
}
}