-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.15 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
{
"name": "next-clean",
"author": "BinarySenseiii",
"description": "Open-source starter template for building Next.js applications with Shadcn and Tailwind CSS.",
"keywords": [
"Next.js",
"TypeScript",
"React",
"Tailwind CSS",
"Shadcn",
"starter template",
"web app",
"open-source"
],
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"analyze": "npx cross-env ANALYZE=true yarn build",
"build": "next build",
"dev": "next dev --turbopack",
"typecheck": "tsc --noEmit",
"start": "next start",
"upgrade:latest": "yarn upgrade-interactive --latest",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:write": "prettier --write \"**/*.{ts,js,jsx,tsx,mdx}\"",
"clean": "rm -rf .next",
"clean-build": "yarn run clean && yarn run build",
"reinstall": "yarn run clean && rm -rf node_modules && rm yarn.lock && yarn install",
"prepare": "husky || true",
"commitlint": "commitlint --edit",
"check-unused:pkgs": "depcheck"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-pattern .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@t3-oss/env-nextjs": "^0.11.0",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.64.2",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jiti": "^2.4.2",
"lucide-react": "^0.473.0",
"motion": "^11.18.1",
"next": "15.1.5",
"nextjs-routes": "^2.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-use": "^17.6.0",
"schema-dts": "^1.1.2",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.6.1",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@next/bundle-analyzer": "^15.1.5",
"@next/eslint-plugin-next": "^15.1.5",
"@tanstack/eslint-plugin-query": "^5.64.2",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/parser": "^8.20.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "15.1.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"ct3aMetadata": {
"initVersion": "7.36.2"
},
"overrides": {
"uri-js": "npm:uri-js-replace"
}
}