-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.75 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
{
"name": "taskpro-backend",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node dist/app/server.js",
"build": "swc app -d dist --copy-files",
"dev": "tsx watch app/server.ts",
"lint": "eslint --fix app/**/*.ts",
"format": "prettier --write ./app",
"format:check": "prettier --check ./app",
"prepare": "husky"
},
"prisma": {
"schema": "./prisma"
},
"dependencies": {
"@azure/msal-node": "^5.2.2",
"@prisma/client": "^6.19.3",
"argon2": "^0.44.0",
"cloudinary": "^2.10.0",
"cookie-parser": "^1.4.7",
"cors": "2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"google-auth-library": "^10.6.2",
"helmet": "^8.2.0",
"http-errors": "^2.0.1",
"ioredis": "^5.11.0",
"jose": "^6.2.3",
"morgan": "1.10.1",
"multer": "^2.1.1",
"nodemailer": "^8.0.10",
"swagger-ui-express": "^5.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.40",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "5.0.6",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.9.1",
"@types/nodemailer": "^8.0.0",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^10.4.1",
"eslint-formatter-mo": "^2.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.0.6",
"prettier": "^3.8.3",
"prisma": "^6.19.3",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
}
}