-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.33 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
58
59
60
61
62
63
{
"name": "heng-client",
"version": "0.1.3",
"contributors": [
{
"name": "ThinkSpiritDevelopers"
}
],
"license": "MIT",
"main": "built/index.js",
"types": "built/index.d.ts",
"description": "Judge Client of Heng",
"repository": "https://github.com/ThinkSpiritLab/Heng-Client",
"scripts": {
"lint": "eslint src --fix",
"check:lint": "eslint src -f codeframe",
"ci-eslint": "eslint src -f codeframe",
"format": "prettier -c ./src/**/*.ts --write",
"check:format": "prettier --check src/*.ts src/**/*.ts",
"ci-format": "prettier --check src/*.ts src/**/*.ts",
"build": "tsc",
"docker:build": "docker build -t thinkspiritlab/heng-client .",
"docker:build:fresh": "docker build -t thinkspiritlab/heng-client --no-cache .",
"docker:run": "docker run --cgroupns private --privileged -v $(pwd)/config.toml:/usr/src/app/config.toml heng-client",
"docker:run:dev": "docker run --cgroupns private --privileged --network=\"host\" -v $(pwd)/config.toml:/usr/src/app/config.toml heng-client",
"dev": "ts-node-dev --respawn -- src/index.ts",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/validator": "^13.7.2",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@types/fs-extra": "^9.0.8",
"@types/node": "^14.14.5",
"@types/unzip-stream": "^0.3.0",
"axios": "^0.27.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"fs-extra": "^10.1.0",
"heng-protocol": "0.0.7",
"heng-sign-js": "^0.1.0",
"lodash": "^4.17.20",
"log4js": "^6.4.7",
"moment": "^2.29.3",
"queue-typescript": "^1.0.1",
"reflect-metadata": "^0.1.13",
"unzip-stream": "^0.3.1",
"ws": "^7.5.7"
}
}