- Root package.json with npm run dev (concurrently API + Vite) - Add node_modules/, frontend/dist/ to .gitignore - Whitelist package.json and package-lock.json
11 lines
280 B
JSON
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"
|
|
}
|
|
}
|