-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.16 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.16 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
{
"name": "twd-tanstack-example",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"dev:ci": "CI=true vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"serve": "json-server --watch data/data.json --routes data/routes.json --port 3001",
"serve:dev": "npm-run-all --parallel serve dev",
"test": "vitest run",
"test:ci": "npx twd-cli run",
"collect:coverage:text": "npx nyc report --reporter=text --temp-dir .nyc_output",
"collect:coverage:html": "npx nyc report --reporter=html --temp-dir .nyc_output",
"collect:coverage:lcov": "npx nyc report --reporter=lcov --temp-dir .nyc_output"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/react-devtools": "^0.10.3",
"@tanstack/react-form": "^1.32.0",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-query-devtools": "^5.100.10",
"@tanstack/react-router": "1.169.2",
"@tanstack/react-router-devtools": "1.166.13",
"@tanstack/router-plugin": "1.167.35",
"lucide-react": "^1.14.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.1.1",
"json-server": "^0.17.4",
"npm-run-all": "^4.1.5",
"nyc": "^18.0.0",
"twd-cli": "^1.1.12",
"twd-js": "^1.8.0",
"twd-relay": "^1.2.0",
"typescript": "^6.0.3",
"vite": "^8.0.12",
"vite-plugin-istanbul": "^8.0.0",
"vitest": "^4.1.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
},
"overrides": {
"@tanstack/history": "1.161.6",
"@tanstack/router-core": "1.169.2",
"@tanstack/router-devtools-core": "1.167.3",
"@tanstack/router-generator": "1.166.42",
"@tanstack/router-utils": "1.161.8",
"@tanstack/virtual-file-routes": "1.161.7"
}
}