generated from rajput-hemant/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
124 lines (124 loc) · 3.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "lipi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"fmt": "prettier --write \"**/*.{ts,tsx,mdx,json}\" --cache",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx,json}\" --cache",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit introspect",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check",
"ui": "bunx shadcn-ui",
"clean": "rm -rf .next",
"cleani": "rm -rf .next && rm -rf node_modules && bun i",
"prepare": "husky"
},
"dependencies": {
"@auth/core": "^0.37.4",
"@auth/drizzle-adapter": "^1.7.4",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@t3-oss/env-nextjs": "^0.11.1",
"@upstash/ratelimit": "^2.0.4",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.4.1",
"babel-plugin-react-compiler": "^19.0.0-beta-0dec889-20241115",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^5.0.2",
"drizzle-orm": "^0.36.4",
"emoji-picker-react": "^4.12.0",
"lucide-react": "^0.460.0",
"next": "^15.0.4-canary.27",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.3",
"postgres": "3.3.5",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-hook-form": "^7.53.2",
"react-resizable-panels": "^2.1.7",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"valtio": "^2.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "22.9.3",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "10.4.20",
"drizzle-kit": "^0.28.1",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-0dec889-20241115",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.7",
"jiti": "^2.4.0",
"lint-staged": "^15.2.10",
"pg": "^8.13.1",
"postcss": "8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"sharp": "^0.33.5",
"tailwindcss": "3.4.15",
"typescript": "5.7.2"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write \"**/*.{ts,tsx,mdx}\" --cache"
],
"*.{ts,tsx,mdx}": [
"eslint --fix ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=22.11.0"
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}