-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
44
45
46
47
{
"name": "koa2-restful",
"version": "1.0.0",
"description": "restful api(koa2)",
"main": "index.js",
"scripts": {
"prod": "cross-env NODE_ENV=production node bin/server.js",
"dev": "cross-env NODE_ENV=development nodemon bin/server.js",
"local": "cross-env NODE_ENV=local nodemon bin/server.js",
"test": "cross-env NODE_ENV=test node bin/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wcongke/koa2-restful.git"
},
"keywords": [
"koa2",
"restful api"
],
"author": "wcongke",
"license": "MIT",
"bugs": {
"url": "https://github.com/wcongke/koa2-restful/issues"
},
"homepage": "https://github.com/wcongke/koa2-restful#readme",
"dependencies": {
"ejs": "^2.5.7",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-router": "^7.2.1",
"koa-views": "^6.0.2",
"mongoose": "^4.11.7",
"redis": "^2.8.0"
},
"devDependencies": {
"bluebird": "^3.5.0",
"cross-env": "^5.0.5",
"extend": "^3.0.1",
"nodemon": "^1.11.0",
"sha1": "^1.1.1",
"standard": "^10.0.3"
},
"engines": {
"node": "^7.6.0",
"npm": "^4.0.0"
}
}