This repository was archived by the owner on Nov 8, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.14 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.14 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
{
"name": "@hydrooj/hydrojudge",
"version": "1.4.5",
"main": "judge/daemon.js",
"author": "masnn",
"os": [
"linux"
],
"dependencies": {
"axios": "^0.19.0",
"bson": "^4.0.4",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"minimist": "^1.2.5",
"p-queue": "^6.6.0",
"shell-quote": "^1.7.2",
"systeminformation": "^4.26.10",
"ws": "^7.3.1"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@types/bson": "^4.0.2",
"@types/fs-extra": "^9.0.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.0.27",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"hydrooj": "^2.10.12",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"bin": {
"judge": "judge/entrypoint.js"
},
"scripts": {
"webpack": "webpack --config webpack.config.js",
"pack": "pkg .",
"build": "tsc",
"lint": "eslint judge --fix"
},
"pkg": {
"scripts": [
"judge/**.js",
"judge/**/**.js"
],
"assets": [
"executorserver",
"examples/*"
]
}
}