-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "biome lint .",
"lint:write": "biome lint --write .",
"format": "biome format .",
"format:write": "biome format --write .",
"check": "biome check .",
"check:write": "biome check --write .",
"validate": "pnpm check && pnpm typecheck",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit",
"prepush": "pnpm lint:write && pnpm format:write && pnpm check:write && pnpm typecheck"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-query": "^5.32.0",
"apexcharts": "^4.3.0",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"cssnano": "^6.0.3",
"lucide-react": "^0.469.0",
"next": "14.2.1",
"next-sitemap": "^4.2.3",
"react": "^18",
"react-apexcharts": "^1.7.0",
"react-dom": "^18",
"react-hook-form": "^7.51.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.1.0",
"recharts": "^2.15.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"universal-cookie": "^7.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"scheduler": "^0.23.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}