-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 KB
/
package.json
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
{
"name": "nextjs-filterlist",
"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.2.1",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "9.18.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"next": "^15.2.0-canary.16",
"postcss": "^8.5.1",
"prisma": "^6.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@tailwindcss/typography": "^0.5.16",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"eslint-config-next": "15.1.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-autofix": "^2.2.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tsx": "^4.19.2"
}
}