generated from agustinusnathaniel/vite-react-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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
{
"name": "vite-react-tailwind-starter",
"version": "0.1.1",
"private": true,
"author": "sozonome",
"type": "module",
"engines": {
"node": ">=20.14.x",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"biome:check": "biome check",
"biome:fix": "pnpm biome:check --write",
"biome:ci": "biome ci",
"type:check": "tsc",
"turbo": "pnpm dlx [email protected]",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest --coverage run",
"check:turbo": "pnpm turbo biome:check type:check test",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"release": "cross-env HUSKY=0 commit-and-tag-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@fontsource/plus-jakarta-sans": "^5.1.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@theme-toggles/react": "^4.1.0",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"million": "3.1.11",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.27.0",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/config-conventional": "^19.5.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.8.5",
"@types/react": "18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"autoprefixer": "^10.4.20",
"commit-and-tag-version": "^12.5.0",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"knip": "^5.34.4",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.15",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-pwa": "^0.20.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
}
}