-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.86 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.86 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "npx tsx prisma/seed.ts",
"test:e2e": "playwright test",
"check-git-hooks": "node .secret-scan/secret-scan.js -- --check-git-hooks",
"format": "prettier --write .",
"lint-fix": "(eslint --fix --cache --report-unused-disable-directives . || true) && prettier --write .",
"lint-check": "eslint --cache --report-unused-disable-directives . && prettier --check .",
"prepare": "husky",
"test": "playwright test"
},
"dependencies": {
"@playwright/test": "^1.49.0",
"@prisma/client": "^6.19.2",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.464.0",
"mongoose": "^8.9.0",
"next": "^15.0.3",
"next-auth": "^5.0.0-beta.30",
"playwright": "^1.49.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^2.5.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv": "^17.3.1",
"eslint": "^8",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^6.19.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "5.9.3"
}
}