-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 797 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 797 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
{
"name": "arena-example-project",
"version": "1.0.0",
"description": "An example project that uses Arena",
"main": "bee.js",
"scripts": {
"dc:up": "docker-compose -f docker-compose.yml up -d",
"dc:down": "docker-compose -f docker-compose.yml down",
"start:fastify": "node fastify.js",
"start:express": "node express.js",
"start:bee": "node bee.js",
"start:bull": "node bull.js",
"start:bullmq": "node bullmq.js",
"start:bullmq_with_flows": "node bullmq_with_flows.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/express": "^2.3.0",
"bee-queue": "^1.4.0",
"bull": "^4.12.4",
"bullmq": "^5.63.0",
"express": "^4.17.1",
"fastify": "^4.13.0"
}
}