-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"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 .",
"ci": "biome ci ."
},
"dependencies": {
"@tanstack/react-form": "^0.41.1",
"@tanstack/react-query": "^5.64.0",
"@tanstack/react-query-devtools": "^5.64.0",
"@tanstack/react-router": "^1.95.5",
"@tanstack/router-devtools": "^1.95.5",
"@tanstack/zod-form-adapter": "^0.41.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tanstack/router-cli": "^1.95.5",
"@tanstack/router-vite-plugin": "^1.95.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/react": "^19.0.5",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-prepush": "^3.0.2",
"lint-staged": "^15.3.0",
"msw": "^2.7.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vitest-preview": "^0.0.1"
}
}