walldash/package.json

31 lines
755 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": {
"@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"
}
}