-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 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
{
"name": "tanstack-start-fastify-example",
"version": "0.0.0",
"license": "UNLICENSED",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "dotenv -e .env -- cross-env NODE_ENV=development vite-node --watch ./server.ts",
"build": "cross-env NODE_ENV=production vite build && tsc --noEmit",
"start": "cross-env NODE_ENV=production vite-node ./server.ts",
"format": "biome format --write",
"lint": "biome check",
"fix": "biome check --write",
"check": "pnpm tsc --noEmit",
"knip": "knip",
"ci": "run-p -l build lint check knip"
},
"dependencies": {
"@fastify/middie": "^9.0.3",
"@fastify/static": "^8.2.0",
"@tanstack/react-query": "^5.90.3",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.132.47",
"@tanstack/react-router-devtools": "^1.133.0",
"@tanstack/react-router-ssr-query": "^1.132.47",
"@tanstack/react-start": "^1.132.56",
"fastify": "^5.6.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redaxios": "^0.5.1",
"srvx": "^0.8.16",
"valibot": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@tailwindcss/postcss": "^4.1.14",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^24.7.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.20",
"cross-env": "^10.1.0",
"dotenv-cli": "^10.0.0",
"knip": "^5.65.0",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.1",
"tailwindcss": "^4.1.14",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vite-node": "^3.2.4",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@10.18.2"
}