-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bilbomd-worker",
"version": "1.12.6",
"description": "A worker app to process BilboMD jobs from BullMQ queue",
"main": "worker.js",
"type": "module",
"scripts": {
"clean": "rimraf build/*",
"copy-assets": "copyfiles --all --up 1 --exclude \"./**/*.{ts,tsx}\" \"./src/**/*\" ./build",
"lint": "eslint",
"tsc": "tsc",
"build": "npm-run-all clean copy-assets lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src --ext ts,ejs --exec npm run start",
"start": "npm run build && node build/worker.js",
"test": "NODE_ENV=test jest --testTimeout=5000 --runInBand --verbose --detectOpenHandles"
},
"keywords": [],
"author": "Scott Classen",
"license": "ISC",
"dependencies": {
"@bl1231/bilbomd-mongodb-schema": "^1.4.8",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"bullmq": "^5.34.8",
"csv-parser": "^3.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"glob": "^11.0.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment-timezone": "^0.5.46",
"mongoose": "^8.9.3",
"nodemailer": "^6.9.16",
"nodemailer-express-handlebars": "^7.0.0",
"qs": "^6.13.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.5",
"@types/nodemailer": "^6.4.17",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"fs-extra": "^11.2.0",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"_moduleAliases": {
"@services": "build/services",
"@models": "build/models",
"@helpers": "build/helpers"
}
}