forked from Potat-Industries/eval-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 980 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 980 Bytes
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
{
"name": "eval-server",
"type": "module",
"version": "1.0.0",
"description": "simple server to run a vm for javascript evaluation",
"main": "index.js",
"scripts": {
"start": "docker-compose up -d && tsc && tsc-alias && node ./dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc"
},
"author": "RyanPotat",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"express": "^4.19.2",
"ioredis": "^5.6.1",
"ip": "^2.0.1",
"isolated-vm": "^6.0.0",
"moment-timezone": "^0.5.46",
"undici": "^6.18.2",
"winston": "^3.17.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"@types/netmask": "^2.0.5",
"@types/ws": "^8.5.12",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}