-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.59 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
{
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"argon2": "^0.44.0",
"cloudinary": "^1.41.3",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"ejs": "^6.0.1",
"express": "^5.2.1",
"helmet": "^8.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.2.0",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^9.0.3",
"pg": "^8.22.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"rate-limiter-flexible": "^11.2.0",
"smile-identity-core": "^3.2.1",
"swagger-ui-express": "^5.0.1",
"uuid": "^14.0.1",
"wkx": "^0.5.0",
"zod": "^4.4.3"
},
"allowScripts": {
"@scarf/scarf@1.4.0": true,
"argon2@0.44.0": true,
"core-js@3.49.0": true,
"smile-identity-core@3.2.1": true,
"esbuild@0.18.20": true,
"esbuild@0.25.12": true,
"esbuild@0.28.1": true
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.2.0",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"commitlint": "^21.2.1",
"drizzle-kit": "^0.31.10",
"eslint": "^10.6.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"rimraf": "^6.1.3",
"tsc-alias": "^1.9.0",
"tsx": "^4.23.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.63.0"
},
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc && tsc-alias",
"start": "node dist/server.js",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"studio": "drizzle-kit studio",
"lint": "eslint .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Group-2-Build-SZN/node-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Group-2-Build-SZN/node-backend/issues"
},
"homepage": "https://github.com/Group-2-Build-SZN/node-backend#readme"
}