-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "@samhwang/vite-react-starter-template",
"version": "1.0.0",
"description": "Vite + React Starter Template",
"msw": {
"workerDirectory": ["public"]
},
"type": "module",
"engines": {
"node": "^22.0.0",
"pnpm": "^9.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"prepare": "pnpm run githooks:init",
"githooks:init": "husky",
"msw:init": "msw init public --save",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:CI": "pnpm run test && pnpm run typecheck",
"test:preview": "vitest-preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"format": "biome format --write .",
"ci": "biome ci ."
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@tanstack/react-router": "^1.77.8",
"@tanstack/router-devtools": "^1.77.8",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tanstack/router-cli": "^1.77.7",
"@tanstack/router-vite-plugin": "^1.77.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.8.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"husky": "^9.1.6",
"jsdom": "^25.0.0",
"msw": "^2.6.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"vitest-preview": "^0.0.1"
}
}