forked from hzh11012/qnets-sso-koa2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
{
"name": "qnets-sso-koa2",
"version": "0.1.0",
"description": "Qnets 单点登录服务端",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"prd": "pm2 start ecosystem.config.js --env production",
"lint": "eslint --fix .",
"lint:fix": "prettier --write ."
},
"keywords": [
"qnets",
"koa2",
"sso"
],
"author": "hzh11012",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"basic-auth": "^2.0.1",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-onerror": "^4.2.0",
"koa-ratelimit": "^5.1.0",
"koa-router": "^13.0.1",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mysql2": "^3.11.3",
"require-directory": "^2.1.1",
"sequelize": "^6.37.4",
"tencentcloud-sdk-nodejs": "^4.0.959",
"zod": "^3.23.8"
},
"devDependencies": {
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.7",
"pm2": "^5.4.2",
"prettier": "^3.3.3"
},
"_moduleAliases": {
"@": ".",
"@app": "app",
"@core": "core",
"@middlewares": "middlewares",
"@api": "app/api",
"@dao": "app/dao",
"@lib": "app/lib",
"@models": "app/models",
"@service": "app/service",
"@validators": "app/validators"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}