-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 911 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 911 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
29
30
31
32
33
34
35
{
"name": "worker",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development DEBUG=worker,upgrade* node --watch index.ts"
},
"imports": {
"#config": "./src/config.ts",
"#mongo": "./src/mongo.ts",
"#locks": "./src/locks.ts",
"#types": "./src/types.ts"
},
"devDependencies": {
"@data-fair/lib-express": "^1.20.4",
"@types/child-process-promise": "^2.2.6",
"@types/nodemailer": "^6.4.16",
"@types/resolve-path": "^1.4.3"
},
"dependencies": {
"@data-fair/lib-node": "^2.8.1",
"@data-fair/processings-shared": "*",
"axios": "^1.8.3",
"axios-retry": "^4.5.0",
"child-process-promise": "^2.1.3",
"config": "^4.0.0",
"debug": "^4.3.7",
"fs-extra": "^11.2.0",
"nodemailer": "^7.0.7",
"prom-client": "^15.1.3",
"resolve-path": "^1.4.0",
"tmp-promise": "^3.0.3",
"tree-kill": "^1.2.2"
}
}