-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
93 lines (93 loc) · 2.91 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
{
"name": "nextjs-shadcn-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"production": "env-cmd -f ./.env.prod next build",
"production:start": "env-cmd -f ./.env.prod next start",
"testing": "env-cmd -f ./.env.test next build",
"testing:start": "env-cmd -f ./.env.test next start",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"cn-add": "npx shadcn-ui@latest add",
"pre:commit": "lint-staged"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@hookform/resolvers": "^3.3.4",
"@next/bundle-analyzer": "^14.1.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"@tanstack/react-query-next-experimental": "^5.28.9",
"@tanstack/react-table": "^8.20.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.0.25",
"js-cookie": "^3.0.5",
"ky": "^1.2.3",
"lodash": "^4.17.21",
"lucide-react": "^0.437.0",
"next": "^14.1.4",
"next-build-id": "^3.0.0",
"next-compose-plugins": "^2.2.1",
"next-intl": "^3.10.0",
"next-themes": "^0.3.0",
"react": "^18",
"react-country-flag": "^3.1.0",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.51.2",
"recharts": "^2.13.0-alpha.4",
"sharp": "^0.33.3",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.0",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"autoprefixer": "^10.0.1",
"env-cmd": "^10.1.0",
"eslint": "^8.55.0",
"eslint-config-next": "14.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx}": [
"bun run lint:fix"
],
"**/*.{ts,js,tsx,jsx,json,yml}": [
"bun run format:write"
]
}
}