-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "koa-admin-design",
"type": "module",
"version": "1.0.0",
"description": "The back-end management system based on Koa developed for admin-design",
"author": {
"name": "baimingxuan",
"email": "354372738@qq.com",
"url": "https://github.com/baimingxuan"
},
"scripts": {
"start": "node bin/www",
"dev": "nodemon bin/www",
"prod": "pm2 start bin/www"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"bcryptjs": "^3.0.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"koa": "^2.16.0",
"koa-bodyparser": "^4.4.1",
"koa-helmet": "^8.0.1",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"koa-router": "^13.0.1",
"koa-session": "^7.0.2",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"mysql2": "^3.14.0",
"sequelize": "^6.37.7",
"svg-captcha": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.9",
"prettier": "^3.3.2"
},
"keywords": [
"koa",
"admin",
"koa-admin-design"
],
"license": "MIT",
"homepage": "https://github.com/baimingxuan/node-admin-design",
"repository": {
"type": "git",
"url": "git+https://github.com/baimingxuan/node-admin-design.git"
},
"bugs": {
"url": "https://github.com/baimingxuan/node-admin-design/issues"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"pnpm": {
"allowedDeprecatedVersions": {
"eslint-define-config": "*",
"are-we-there-yet": "*",
"gauge": "*",
"glob": "*",
"inflight": "*",
"npmlog": "*",
"rimraf": "*"
}
}
}