-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "rss",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon --config nodemon.json src/server.js --exec babel-node",
"start": "nodemon --config nodemon.json dist/server.js",
"build": "babel src -d dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.22.0",
"co": "^4.6.0",
"feedparser": "^2.0.0",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"koa-ejs": "^3.0.0",
"koa-logger": "^1.3.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"nodemon": "^1.11.0",
"primus": "^6.0.7",
"request": "^2.79.0",
"ws": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0"
},
"engines": {
"node": "7.3.0"
}
}