-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 KB
/
package.json
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
{
"name": "tanstack-bun-wasm-starter",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT",
"maintainers": [
"Tyler Barker <[email protected]>"
],
"scripts": {
"typecheck": "tsc --noEmit",
"setup": "bun i && bun run wasm:build && bun run wasm:test && bun test",
"dev": "concurrently \"bun run wasm:watch\" \"vinxi dev\"",
"wasm:build": "bun wasm-build.ts",
"wasm:test": "cd acrate && wasm-pack test --headless --chrome",
"wasm:watch": "bun wasm-build.ts --watch",
"build": "bun run wasm:build && vinxi build",
"start": "vinxi start"
},
"devDependencies": {
"@happy-dom/global-registrator": "^16.8.1",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/router-devtools": "^1.99.0",
"@tanstack/router-plugin": "^1.99.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"bun-types": "^1.2.2",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"vite": "^6.0.11",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-router": "^1.99.0",
"@tanstack/start": "^1.99.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vinxi": "^0.5.1"
}
}