forked from ThinkSpiritLab/Heng-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.09 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
{
"name": "heng-client",
"version": "0.0.1",
"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",
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0",
"typescript": "^3.9.7"
},
"scripts": {
"ci-eslint": "eslint --ext .ts,.js ./src",
"lint": "eslint --ext .ts,.js ./src --fix",
"ci-format": "prettier -c ./src/**/*.ts",
"format": "prettier -c ./src/**/*.ts --write",
"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"
},
"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.21.4",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"fs-extra": "^8.1.0",
"heng-protocol": "^0.0.6",
"heng-sign-js": "^0.0.17",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"queue-typescript": "^1.0.1",
"reflect-metadata": "^0.1.13",
"unzip-stream": "^0.3.1",
"ws": "^7.4.1"
}
}