-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 730 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 730 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
{
"name": "distributed-task-queue",
"version": "1.0.0",
"description": "Distributed task queue with causal ordering and fault tolerance",
"main": "index.js",
"type": "module",
"scripts": {
"start:coordinator": "npx nodemon src/coordinator/index.js",
"start:worker": "npx nodemon src/worker/index.js",
"start:client": "npx nodemon src/client/index.js",
"test": "node --test tests/**/*.test.js",
"logs": "docker-compose logs -f"
},
"dependencies": {
"amqplib": "^0.10.3",
"express": "^4.18.2",
"redis": "^4.6.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=20"
},
"author": "Jasper van Heusden",
"license": "MIT"
}