-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 2.07 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
64
65
66
67
68
{
"name": "@lyrio/judge",
"version": "1.0.0",
"description": "The judge service of Lyrio",
"repository": "https://github.com/lyrio-dev/judge",
"license": "MIT",
"author": "Menci <[email protected]>",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"check-style": "prettier --check \"src/**/*.ts\"",
"install": "cmake-js compile",
"lint": "eslint src --ext ts --cache",
"start": "node -r @swc-node/register -r tsconfig-paths/register index",
"test": "tsc --noEmit -p ."
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@swc-node/core": "^1.9.0",
"@swc-node/register": "^1.5.1",
"@swc/core": "^1.2.242",
"agentkeepalive": "^4.2.1",
"axios": "^0.27.2",
"bindings": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"lru-cache": "^7.14.0",
"node-addon-api": "^5.0.0",
"object-hash": "^3.0.0",
"prettier": "^2.7.1",
"promise-queue": "^2.2.5",
"reflect-metadata": "^0.1.13",
"simple-sandbox": "^0.3.25",
"socket.io-client": "^4.5.1",
"socket.io-msgpack-parser": "^3.0.1",
"stream-to-string": "^1.2.0",
"systeminformation": "^5.12.6",
"toposort": "^2.0.2",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash.debounce": "^4.0.7",
"@types/object-hash": "^2.2.1",
"@types/promise-queue": "^2.2.0",
"@types/stream-to-string": "^1.2.0",
"@types/toposort": "^2.0.3",
"@types/unzipper": "^0.10.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"cmake-js": "^6.3.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
}
}