-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 785 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
{
"name": "bunstack",
"version": "0.1.0",
"private": false,
"type": "module",
"main": "src/main.tsx",
"module": "src/main.tsx",
"scripts": {
"build": "tsr generate && bun run build.ts",
"dev": "concurrently \"tsr watch\" \"bun --hot src/index.html --no-clear-screen\"",
"preview": "serve dist",
"format": "biome format --write ."
},
"dependencies": {
"@tanstack/react-router": "^1.114.13",
"@tanstack/router-cli": "^1.114.13",
"@tanstack/router-devtools": "^1.114.13",
"bun-plugin-tailwind": "^0.0.14",
"react": "^19",
"react-dom": "^19",
"tailwindcss": "^4.0.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"serve": "^14.2.4"
}
}