forked from itamarbareket/steemRSS
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "steem-rss",
"version": "1.0.0",
"description": "",
"repository": {
"url": "github.com/steemrss/steemRSS"
},
"main": "src/app.js",
"watch": {
"start": "{src,test}/**/*.js"
},
"scripts": {
"heroku-prebuild": "export NPM_CONFIG_PRODUCTION=false; export NODE_ENV=; NPM_CONFIG_PRODUCTION=false NODE_ENV=development npm install",
"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",
"watch": "npm-watch"
},
"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.7.0",
"babel-preset-stage-3": "^6.24.1",
"npm-watch": "^0.4.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"koa": "^2.7.0",
"koa-compose": "^4.1.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^3.0.0",
"path": "^0.12.7",
"rss": "^1.2.2",
"showdown": "^1.9.0",
"steem": "^0.7.4"
}
}