-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "my-tomato",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.12.8",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.30.10",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"lucide-react": "^0.377.0",
"next": "15.0.3",
"postgres": "^3.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.4.5"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/web-worker": "^1.6.0",
"autoprefixer": "10.4.19",
"drizzle-kit": "^0.20.17",
"jsdom": "^24.0.0",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"vitest": "^1.6.0"
}
}