-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 907 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 907 Bytes
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": "node-api-forwarding",
"version": "1.0.0",
"description": "api权限控制、转发中间层",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/app.js --inspect --exec babel-node",
"build": "rm -rf server && babel src -d server && cp -r ./src/static ./server/"
},
"keywords": [
"Koa",
"Node"
],
"author": "405171253@qq.com",
"license": "ISC",
"dependencies": {
"@koa/cors": "2",
"babel-polyfill": "^6.26.0",
"glob": "^7.1.3",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.0.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.1",
"request": "^2.88.0",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^5.7.0"
}
}