-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "openwebsite-swtpower",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"prisma:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "6.19.0",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.532.0",
"next": "16.2.9",
"next-intl": "4.13.1",
"nodemailer": "^7.0.10",
"prisma": "6.19.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.6.0",
"tsx": "^4.20.5",
"zod": "4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^24.10.2",
"@types/nodemailer": "^7.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "16.2.9",
"prettier": "^3.7.4",
"tailwindcss": "4.3.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=23 <24"
}
}