-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) Β· 3.11 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
{
"name": "302-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"commitlint": "commitlint",
"commit": "git-cz"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@stepperize/react": "^3.1.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.15",
"accept-language": "^3.0.20",
"ahooks": "^3.8.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.9",
"i18next": "^23.16.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"immer": "^10.1.1",
"iso-639-1": "^3.1.3",
"jiti": "^2.3.3",
"ky": "^1.7.2",
"lucide-react": "^0.453.0",
"mitt": "^3.0.1",
"nanoid": "^5.0.7",
"next": "14.2.15",
"next-themes": "^0.3.0",
"radash": "^12.1.0",
"react": "^18",
"react-avatar-editor": "^13.0.2",
"react-dom": "^18",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^15.1.0",
"react-icons": "^5.3.0",
"react-layout-masonry": "^1.2.0",
"spinkit": "^2.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@commitlint/prompt-cli": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@types/node": "^20.16.14",
"@types/react": "^18.3.11",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^18.3.1",
"add": "^2.0.6",
"commitizen": "^4.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"inquirer": "^9.3.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --config .eslintrc.json --no-cache",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}