Files
yourpart3/package.json
Torsten Schulz (local) b3f6429307
All checks were successful
Deploy to production / deploy (push) Successful in 3m3s
feat(optimize): optimize Falukant 3D models during build and update deployment scripts
2026-07-24 13:31:08 +02:00

26 lines
778 B
JSON
Executable File

{
"name": "yourpart",
"version": "3.0.0-beta-1.0.0",
"scripts": {
"start": "npm-run-all --parallel build start:backend",
"build": "cd frontend && npm run optimize-models && npm run build",
"start:backend": "cd backend && node server.js",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && nodemon server.js",
"dev:frontend": "cd frontend && npm run dev"
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.14",
"npm-run-all2": "^8.0.4"
},
"dependencies": {
"cors": "^2.8.6",
"dompurify": "^3.3.3",
"sequelize-cli": "^6.6.5"
},
"overrides": {
"minimatch": "10.2.4"
}
}