-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.79 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.79 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
96
97
98
99
100
101
102
103
{
"name": "eduops-be",
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.1",
"engines": {
"node": "24.13.0"
},
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"test": "jest --passWithNoTests -t '^(?!.*@integration)'",
"test:watch": "jest --watch",
"test:unit": "jest -t '@unit' --testPathIgnorePatterns='/src/test/bdd/' '/src/test/integration/'",
"test:critical": "jest -t '#critical'",
"test:integration": "jest -t '@integration' --runInBand",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts, js}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.984.0",
"@aws-sdk/client-ssm": "^3.988.0",
"@aws-sdk/cloudfront-signer": "^3.988.0",
"@aws-sdk/s3-request-presigner": "^3.984.0",
"@casl/ability": "^6.8.0",
"@casl/prisma": "^1.6.1",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@sentry/node": "^10.38.0",
"@sentry/profiling-node": "^10.38.0",
"bcrypt": "^6.0.0",
"better-auth": "^1.4.17",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-jwt": "^8.5.1",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^8.0.1",
"pg": "^8.16.3",
"tldts": "^7.0.23",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^9.9.0",
"@paralleldrive/cuid2": "^3.3.0",
"@swc/core": "^1.15.11",
"@swc/jest": "^0.2.39",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/multer-s3": "^3.0.3",
"@types/node": "^25.0.3",
"@types/nodemailer": "^7.0.10",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"prisma": "^7.2.0",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}