-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 873 Bytes
/
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": "restful-blog-crud",
"version": "1.0.0",
"description": "backend server based on restful api",
"main": "index.js",
"scripts": {
"db": "mongod -dbpath ./data",
"start": "nodemon ./bin/entry"
},
"keywords": [
"koa",
"restful"
],
"author": "Zhiyu He",
"license": "ISC",
"dependencies": {
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-register": "^6.18.0",
"kcors": "^2.2.0",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-logger": "^2.0.0",
"koa-passport": "^2.2.2",
"koa-router": "^7.0.1",
"mongoose": "^4.7.5",
"nodeman": "^1.1.2",
"nodemon": "^1.11.0",
"oauth2orize-koa": "^1.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0"
}
}