forked from imkimchi/steemRSS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.22 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
{
"name": "steem-rss",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"heroku-prebuild": "export NPM_CONFIG_PRODUCTION=false; export NODE_ENV=; NPM_CONFIG_PRODUCTION=false NODE_ENV=development npm install --only=dev --dev",
"heroku-postbuild": "export NPM_CONFIG_PRODUCTION=true; export NODE_ENV=production;",
"start": "export NODE_ENV=production && npm run build && node 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"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"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",
"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",
"rss": "^1.2.2",
"steem": "^0.6.7"
}
}