-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
{
"name": "vite-react-chakra-starter",
"version": "0.1.0",
"private": true,
"author": "agustinusnathaniel",
"type": "module",
"engines": {
"node": ">=22.11.x",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "react-router dev",
"build": "pnpm typegen && react-router build",
"serve": "vite preview",
"biome:check": "biome check",
"biome:fix": "pnpm biome:check --write",
"biome:ci": "biome ci",
"turbo": "pnpm dlx [email protected]",
"typegen": "react-router typegen",
"type:check": "pnpm typegen && tsc",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest --coverage run",
"check:turbo": "pnpm turbo biome:check type:check test",
"knip": "knip",
"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"
},
"dependencies": {
"@chakra-ui/react": "^3.5.1",
"@emotion/react": "^11.14.0",
"@fontsource-variable/plus-jakarta-sans": "^5.1.1",
"@react-router/node": "^7.1.3",
"isbot": "^5.1.22",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.4.0",
"react-router": "^7.1.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chakra-ui/cli": "^3.5.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@react-router/dev": "^7.1.3",
"@types/node": "^22.12.0",
"@types/react": "19.0.2",
"@types/react-dom": "^19.0.3",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"commit-and-tag-version": "^12.5.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"knip": "^5.43.6",
"lint-staged": "^15.4.3",
"rollup-plugin-visualizer": "^5.13.1",
"typescript": "5.7.2",
"vite": "^6.0.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-pwa": "^0.21.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}