-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "todo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:check": "prettier --check \"./src/**/*.{ts,tsx}\" --cache",
"format:write": "prettier --write \"./src/**/*.{ts,tsx}\" --cache",
"generate": "drizzle-kit generate:pg",
"introspect": "drizzle-kit introspect:pg",
"studio": "drizzle-kit studio --port 3001 --verbose",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^4.29.7",
"@clerk/themes": "^1.7.9",
"@hookform/resolvers": "^3.3.4",
"@nextui-org/react": "^2.2.9",
"@tanstack/react-query": "^5.28.4",
"@vercel/analytics": "^1.2.2",
"date-fns": "^3.4.0",
"drizzle-orm": "^0.29.3",
"eslint": "^8.57.0",
"framer-motion": "^11.0.3",
"next": "latest",
"postgres": "^3.4.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.50.1",
"react-hotkeys-hook": "^4.5.0",
"react-icons": "^5.0.1",
"sonner": "^1.4.3",
"svix": "^1.20.0",
"typescript-eslint": "^7.2.0",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.14",
"eslint-config-next": "14.1.0",
"husky": "^9.0.11",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}