-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.67 KB
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
{
"name": "react-template",
"private": true,
"version": "0.7.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "bunx biome lint ./src",
"format": "bunx biome format --write ./src",
"check": "bunx biome check --write ./src",
"env:sync": "bun run scripts/sync-env.ts",
"prepare": "bun run env:sync && bunx simple-git-hooks"
},
"dependencies": {
"@lit/react": "1.0.8",
"@m3e/react": "2.2.0",
"@tanstack/react-query": "5.95.2",
"@tanstack/react-router": "1.168.8",
"@tanstack/react-router-devtools": "1.166.11",
"react": "19.2.4",
"react-dom": "19.2.4",
"superagent": "10.3.0",
"superagent-prefix": "0.0.2",
"zustand": "5.0.12",
"zustand-slices": "0.4.0",
"zustand-utils": "2.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@tanstack/react-query-devtools": "5.95.2",
"@tanstack/router-plugin": "1.167.9",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.12.0",
"@types/react": "19",
"@types/react-dom": "19",
"@types/superagent": "8.1.9",
"@types/superagent-prefix": "0.0.7",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "4.1.2",
"globals": "17.4.0",
"jsdom": "29.0.1",
"simple-git-hooks": "2.13.1",
"typescript": "6.0.2",
"vite": "8.0.5",
"vitest": "4.1.2"
},
"simple-git-hooks": {
"pre-commit": "bunx biome check --write ./src"
}
}