-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.72 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "bilbomd-backend",
"description": "backend server for BilboMD webapp",
"version": "1.16.2",
"main": "server.js",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "copyfiles --all --up 1 --exclude \"./**/*.{ts,tsx}\" \"./src/**/*\" ./dist",
"lint": "eslint",
"tsc": "tsc",
"build": "npm-run-all clean copy-assets lint tsc",
"dev": "concurrently \"npm run watch-ts\" \"nodemon dist/server.js\"",
"watch-ts": "tsc -w",
"start": "npm run build && node dist/server.js",
"test": "NODE_ENV=test jest --testTimeout=5000 --runInBand --verbose --detectOpenHandles --coverage",
"test:jobs": "NODE_ENV=test jest --testTimeout=5000 --runInBand --detectOpenHandles test/jobs.test.ts",
"server": "nodemon .",
"swagger": "npx ts-node src/openapi/swagger.ts"
},
"dependencies": {
"@bl1231/bilbomd-mongodb-schema": "^1.4.8",
"@bull-board/api": "^6.6.1",
"@bull-board/express": "^6.6.1",
"axios": "^1.7.9",
"bullmq": "^5.34.8",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"cron": "^3.5.0",
"dotenv": "^16.4.7",
"eslint-plugin-jest": "^28.10.0",
"express": "~4.21.2",
"express-rate-limit": "^7.5.0",
"express-winston": "^4.2.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"ioredis": "^5.4.2",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.46",
"mongoose": "^8.9.4",
"mongoose-to-swagger": "^1.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"nodemailer-express-handlebars": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"typescript": "^5.7.3",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@shelf/jest-mongodb": "^4.3.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.5",
"@types/nodemailer": "^6.4.17",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.19.1"
}
}