walldash/package.json
cediackermann f69b9f401a
build: Bazel rules_js — link node_modules via pnpm-lock
bazel build //walldash:node_modules. Adds pnpm-lock.yaml (from package-lock)
+ pnpm.onlyBuiltDependencies, and npm_link_all_packages in BUILD.bazel.
Native bun build/run is unchanged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-13 20:39:07 +02:00

35 lines
844 B
JSON

{
"name": "walldash",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build src/main.tsx --outdir public --minify --target browser",
"start": "bun run src/server.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.2",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@tanstack/react-query": "^5.99.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"express": "^5.2.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.1"
},
"pnpm": {
"onlyBuiltDependencies": []
}
}