-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 943 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 943 Bytes
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
{
"name": "week2",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --filter=apps/*",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:seed": "tsx packages/db/prisma/seed.ts"
},
"devDependencies": {
"@types/node": "^24.5.2",
"prettier": "^3.6.2",
"prisma": "^6.16.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*",
"packages/validators"
],
"dependencies": {
"@prisma/client": "^6.16.2",
"@types/express": "^5.0.3",
"@types/nodemailer": "^7.0.3",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"kafkajs": "^2.2.4",
"nodemailer": "^7.0.10",
"zod": "^4.1.11"
},
"type": "module"
}