-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 866 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
{
"name": "job-q-sys",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc -b",
"prestart": "npm run build",
"start": "concurrently \"node dist/index.js\" \"node dist/worker.js\"",
"dev": "concurrently \"tsx src/index.ts\" \"tsx src/worker.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@types/express": "^5.0.6",
"bullmq": "^5.73.0",
"concurrently": "^10.0.4",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"redis": "^5.11.0",
"swagger-ui-express": "^5.0.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/swagger-ui-express": "^4.1.8",
"dotenv": "^17.4.1",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^7.0.2"
}
}