-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "rce-engine-api",
"version": "1.0.0",
"description": "This REST API handles caching code, creating jobs and sending tasks to workers",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch"
},
"keywords": [],
"author": "FusionSid",
"license": "MIT",
"prisma": {
"schema": "./src/core/db/schema.prisma"
},
"dependencies": {
"@prisma/client": "^5.1.1",
"@types/amqplib": "^0.10.1",
"@types/uuid": "^9.0.2",
"amqplib": "^0.10.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"nodemon": "^3.0.1",
"redis": "^4.6.7",
"uuid": "^9.0.0",
"zod": "^3.21.4",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.4.10",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.1.1"
}
}