-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
executable file
·73 lines (73 loc) · 1.92 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
{
"name": "passport-combine-casbin",
"version": "1.0.0",
"description": "",
"private": true,
"dependencies": {
"@casbin/redis-watcher": "^1.0.2",
"@midwayjs/axios": "^3.5.0",
"@midwayjs/bootstrap": "^3.4.12",
"@midwayjs/core": "^3.4.12",
"@midwayjs/cross-domain": "^3.5.0",
"@midwayjs/decorator": "^3.4.11",
"@midwayjs/jwt": "^3.4.12",
"@midwayjs/passport": "^3.4.12",
"@midwayjs/security": "^3.4.12",
"@midwayjs/validate": "^3.4.12",
"@midwayjs/web": "^3.4.12",
"@prisma/client": "^4.2.1",
"casbin": "5.14.0-beta.4",
"casbin-prisma-adapter": "^1.2.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"egg": "^2.36.0",
"passport-github": "^1.1.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@midwayjs/cli": "^1.3.11",
"@midwayjs/egg-ts-helper": "^1.2.1",
"@midwayjs/mock": "^3.4.12",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.18.26",
"@types/passport-github2": "^1.2.5",
"@types/passport-jwt": "^3.0.6",
"axios": "^0.27.2",
"cross-env": "^6.0.3",
"egg-mock": "^3.26.0",
"ioredis": "^5.2.3",
"jest": "^26.6.3",
"mwts": "^1.3.0",
"prisma": "^4.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.1",
"typescript": "~4.6.4"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node bootstrap.js",
"dev": "cross-env ets && cross-env NODE_ENV=local midway-bin dev --ts",
"test": "midway-bin test --ts",
"cov": "midway-bin cov --ts",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "midway-bin build -c",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push"
},
"midway-bin-clean": [
".vscode/.tsbuildinfo",
"dist"
],
"repository": {
"type": "git",
"url": ""
},
"author": "xiaoqinvar",
"license": "MIT"
}