-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.97 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nextjs-16-template",
"version": "1.1.1",
"author": "Anwar Hossain",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"format": "prettier --write .",
"prepare": "husky",
"lint:staged": "next lint",
"postbuild": "npx prisma generate",
"postinstall": "npx prisma generate",
"prisma:generate": "npx prisma generate",
"prisma:push": "npx prisma db push",
"seed": "node --loader ts-node/esm prisma/seed.ts",
"ngrok": "ngrok http 3000"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@clerk/nextjs": "^6.36.5",
"@prisma/client": "^6.19.2",
"@tanstack/react-query": "^5.90.8",
"@tanstack/react-query-devtools": "^5.91.1",
"axios": "^1.8.2",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"config": "^3.3.12",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.26",
"lucide-react": "^0.562.0",
"next": "16.1.4",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.69.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"svix": "^1.82.0",
"tailwind-merge": "^3.2.0",
"winston": "^3.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "^22.15.3",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^6.19.2",
"tailwindcss": "^4.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}