-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "rce-engine-worker",
"version": "1.0.0",
"description": "This worker is a RabbitMQ consumer and will run any code given to it and save the result to the database",
"main": "dist/src/index.js",
"scripts": {
"dev": "nodemon --watch",
"watch": "npm run clean && tsc && npm run copy && tsc --watch",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc && npm run copy",
"copy": "cp -R ./src/core/config ./dist/src/core/config"
},
"prisma": {
"schema": "./src/core/db/schema.prisma"
},
"keywords": [],
"author": "FusionSid",
"license": "MIT",
"dependencies": {
"@prisma/client": "^3.15.2",
"amqplib": "^0.10.3",
"dotenv": "^16.3.1",
"redis": "^4.6.7",
"tmp-promise": "^3.0.3",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/uuid": "^9.0.2",
"copyfiles": "^2.4.1",
"nodemon": "^3.0.1",
"prisma": "^5.1.1"
}
}