-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@h2oj/backend",
"version": "0.1.0",
"description": "Hydrogen OJ backend.",
"author": "Hydrogen OJ Team",
"repository": "https://github.com/hydrogen-oj/hoj-backend.git",
"license": "AGPL-3.0",
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"ci": "yarn run cov && yarn run tsc",
"start": "egg-scripts start --title=egg-server-hoj-backend",
"stop": "egg-scripts stop --title=egg-server-hoj-backend",
"start2": "yarn clean && yarn ci && yarn run start",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"cov": "egg-bin cov",
"clean": "ets clean"
},
"dependencies": {
"@h2oj/judge": "^0.2.0",
"adm-zip": "^0.5.1",
"axios": "^0.21.1",
"crypto-js": "^4.0.0",
"egg": "^2.29.1",
"egg-bus": "^1.0.0-alpha.9",
"egg-cors": "^2.2.3",
"egg-jwt": "^3.1.7",
"egg-multipart": "^2.10.3",
"egg-scripts": "^2.13.0",
"egg-ts-typeorm": "^1.1.12",
"egg-websocket-plugin": "^1.0.1",
"mysql": "^2.18.1",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/crypto-js": "^4.0.1",
"@types/socket.io": "^2.1.13",
"egg-bin": "^4.15.0",
"egg-ts-helper": "^1.25.8",
"typescript": "^4.0.5"
}
}