-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "leetcode-evaluator-service",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts --fix",
"prebuild": "npx eslint . --fix",
"build": "npx tsc",
"watch": "npx tsc -w",
"prestart": "npm run build",
"start": "npx nodemon dist/index.js",
"dev": "npx concurrently --kill-others \"npm run watch\" \"npm start\""
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@bull-board/api": "^6.2.3",
"@bull-board/express": "^6.2.3",
"@bull-board/ui": "^6.2.3",
"@types/dockerode": "^3.3.31",
"@types/ioredis": "^5.0.0",
"bullmq": "^5.20.0",
"concurrently": "^9.0.1",
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"ioredis": "^5.4.1",
"leetcode-evaluator-service": "file:",
"typescript": "^5.6.3",
"winston": "^3.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/express": "^4.17.21",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"typescript-eslint": "^8.9.0"
}
}