-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.04 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.04 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
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
86
87
88
89
90
91
92
93
94
95
{
"name": "typescript-backend-toolkit",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"pnpm start:dev\" \"pnpm email:dev\"",
"start:dev": "dotenv -e .env.development -- tsx --watch ./src/main.ts",
"build": "tsup --config build.ts",
"start:prod": "dotenv -e .env.production -- node ./dist/main.js",
"start:local": "dotenv -e .env.local -- node ./dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"email:dev": "email dev --dir ./src/email/templates",
"tbk": "dotenv -e .env.development -- node --import tsx ./packages/tbk/dist/cli.js"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@react-email/preview-server": "^4.3.2",
"@themuneebh-oss/tbk": "workspace:tbk",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/formidable": "^3.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^24.9.2",
"@types/nodemailer": "^6.4.8",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"commander": "^14.0.1",
"concurrently": "^9.1.0",
"esbuild": "^0.19.8",
"eslint": "~9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.3.0",
"rimraf": "^5.0.1",
"tsup": "^8.1.0",
"tsx": "^4.19.2",
"typescript": "*",
"typescript-eslint": "^8.46.2"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"@aws-sdk/client-s3": "^3.922.0",
"@bull-board/api": "^6.14.0",
"@bull-board/express": "^6.14.0",
"@react-email/components": "^0.5.7",
"@react-email/render": "^1.4.0",
"@types/compression": "^1.7.2",
"@types/react": "^19.2.2",
"argon2": "^0.30.3",
"axios": "^1.13.1",
"bullmq": "^5.63.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^8.1.0",
"form-data": "^4.0.4",
"formidable": "^3.5.4",
"helmet": "^6.0.1",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"mailgun.js": "^10.2.4",
"mongoose": "^8.19.2",
"nanoid": "^3.3.7",
"nodemailer": "^6.9.13",
"openapi3-ts": "^4.3.3",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"pino-pretty": "^11.1.0",
"prom-client": "^15.1.3",
"react": "^19.2.0",
"react-email": "^4.3.2",
"redis": "^4.6.11",
"resend": "^4.0.0",
"socket.io": "^4.7.5",
"swagger-ui-express": "^5.0.1",
"validator": "^13.15.20",
"yaml": "^2.5.0",
"zod": "^3.21.4"
},
"author": "",
"license": "ISC",
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}