-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 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
{
"name": "express-server-app",
"version": "1.0.0",
"license": "ISC",
"type": "module",
"engines": {
"node": "22.19.0"
},
"main": "app/main.js",
"scripts": {
"start:dev": "nodemon",
"build": "run-s rm:dist tsc:compile ts-paths:resolve",
"start:prod": "run-s build run:prod",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"rm:dist": "rm -rf dist",
"tsc:compile": "tsc -p tsconfig.json",
"ts-paths:resolve": "tsc-alias -p tsconfig.json",
"run:dev": "node --enable-source-maps --env-file=.env dist/app/main.js",
"dev:cycle": "run-s tsc:compile ts-paths:resolve run:dev",
"run:prod": "node --env-file=.env --env-file=.env.prod dist/app/main.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"bullmq": "^5.62.1",
"chalk": "^5.6.2",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"google-auth-library": "^10.4.2",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"npm-run-all": "^4.1.5",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.27",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@eslint/json": "^0.13.2",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.4.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}