Files
sbsports/package.json
alexandrump 78c5ed52ac feat: initial sbsports deployment setup
Add Coolify/Woodpecker CI config, .gitignore, and deployment scripts.
2026-04-22 01:01:42 +02:00

29 lines
680 B
JSON

{
"name": "sbsports",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n api,vue -c blue,green \"node server/index.js\" \"vite\"",
"build": "vite build",
"serve": "node server/index.js",
"preview": "vite preview"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"concurrently": "^9.1.2",
"express": "^4.21.2",
"lucide-vue-next": "^0.469.0",
"pinia": "^2.2.6",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"vite": "^6.0.11"
}
}