Files
easy-wallet/package.json
Davide Grilli cbbc34071c chore: add root npm workspace and update gitignore
- Root package.json with npm run dev (concurrently API + Vite)
- Add node_modules/, frontend/dist/ to .gitignore
- Whitelist package.json and package-lock.json
2026-03-09 14:09:12 +01:00

11 lines
280 B
JSON

{
"name": "bitcoin-address-generator",
"private": true,
"scripts": {
"dev": "concurrently --kill-others -n API,Vite \"venv/bin/python -m uvicorn src.api:app --port 8000\" \"npm --prefix frontend run vite\""
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}