-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "vite-react-tailwind",
"private": true,
"type": "module",
"engines": {
"node": "^24.11.x"
},
"packageManager": "pnpm@11.8.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.16.0",
"onFail": "download"
}
},
"scripts": {
"dev": "vp dev --port 3000",
"start": "vp dev --port 3000",
"build": "vp build",
"serve": "vp preview",
"generate-pwa-assets": "pwa-assets-generator",
"turbo": "pnpm dlx turbo@2.6.1",
"type:check": "tsc",
"test": "vp test run",
"test:ui": "vp test --ui --coverage",
"test:coverage": "vp test --coverage run",
"ultracite:check": "ultracite check",
"ultracite:fix": "ultracite fix",
"biome:ci": "biome ci",
"check:turbo": "pnpm turbo ultracite:check type:check test",
"release": "cross-env HUSKY=0 commit-and-tag-version",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"validate:csp": "node --experimental-strip-types scripts/validate-csp.ts",
"knip": "knip",
"prepare": "vp config"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-devtools": "^0.10.8",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-devtools": "^5.101.2",
"@tanstack/react-router": "^1.170.16",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/router-plugin": "^1.168.18",
"@theme-toggles/react": "^4.1.0",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@commitlint/types": "^20.5.0",
"@julr/vite-plugin-validate-env": "^2.2.2",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/typography": "^0.5.20",
"@tanstack/devtools-vite": "^0.8.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-react": "^6.0.3",
"babel-plugin-react-compiler": "^1.0.0",
"commit-and-tag-version": "^12.7.3",
"jsdom": "^29.1.1",
"knip": "^6.23.0",
"typescript": "^6.0.3",
"ultracite": "7.3.2",
"vite": "catalog:",
"vite-plugin-checker": "^0.14.4",
"vite-plugin-pwa": "^1.3.0",
"vite-plus": "catalog:",
"vitest": "catalog:",
"web-vitals": "^5.3.0"
}
}