-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.77 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
{
"name": "next16-remix-contacts-rebuild-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma.studio": "npx prisma studio",
"prisma.seed": "tsx prisma/seed.ts",
"prisma.migrate": "npx prisma migrate dev",
"prisma.push": "npx prisma db push"
},
"dependencies": {
"@prisma/client": "^6.4.1",
"@tailwindcss/container-queries": "^0.1.1",
"@types/node": "22.13.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-e1e972c-20250221",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "9.21.0",
"eslint-config-next": "15.2.0",
"match-sorter": "^8.0.0",
"next": "^16.2.2",
"postcss": "^8.5.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "^5.0.0",
"react-hot-toast": "^2.5.2",
"server-only": "^0.0.1",
"sort-by": "^0.0.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.17",
"typescript": "5.7.3",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@tailwindcss/typography": "^0.5.16",
"@types/eslint": "^9.6.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-autofix": "^2.2.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-e1e972c-20250221",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^16.0.0",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.4.1",
"tsx": "^4.19.3"
}
}