-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 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
{
"name": "correction-runner",
"version": "1.0.0",
"main": "index.js",
"author": "Alvaro Maceda <alvaro@alvaromaceda.es>",
"license": "LGPL-3.0-or-later",
"type": "module",
"scripts": {
"starter": "nodemon src/correction_starter.js",
"completer": "nodemon src/correction_completer.js",
"notifier": "nodemon src/correction_notifier.js",
"dev:starter": "NODE_ENV=development nodemon src/correction_starter.js | npx pino-pretty",
"dev:completer": "NODE_ENV=development nodemon src/correction_completer.js",
"dev:notifier": "NODE_ENV=development nodemon src/correction_notifier.js",
"lint": "eslint ./src"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.0.0",
"nodemon": "^3.1.0",
"pino-pretty": "^11.0.0"
},
"dependencies": {
"ajv": "^8.13.0",
"amqplib": "^0.10.4",
"axios": "^1.7.2",
"bullmq": "^5.7.8",
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"json-canonicalize": "^1.0.6",
"pino": "^9.1.0",
"uuid": "^9.0.1"
}
}