-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "koa-server-template",
"version": "1.0.0",
"description": "基于koa封装的开箱即用的node服务端项目模板",
"main": "index.js",
"scripts": {
"dev": "export NODE_ENV=development&&nodemon app.js",
"win:dev": "set NODE_ENV=development&&nodemon app.js",
"start": "export NODE_ENV=production&&node app.js",
"clear:log": "rm -rf ./logs/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderlibs/koa-server-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coderlibs/koa-server-template/issues"
},
"homepage": "https://github.com/coderlibs/koa-server-template#readme",
"dependencies": {
"axios": "^1.1.3",
"crypto": "^1.0.1",
"ip2region": "^2.3.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-body": "^6.0.1",
"koa-compress": "^5.1.1",
"koa-jwt": "^4.0.3",
"koa-log4": "^2.3.2",
"koa-router": "^12.0.0",
"koa-server-static": "^1.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"module-alias": "^2.2.3",
"mysql": "^2.18.1",
"nodemon": "^2.0.20",
"uuid": "^9.0.0"
}
}