Files
yourpart3/package.json
Torsten Schulz (local) 1ab9407e79
All checks were successful
Deploy to production / deploy (push) Successful in 2m56s
Refactor code structure for improved readability and maintainability; optimize performance across multiple modules.
2026-07-21 09:08:15 +02:00

26 lines
751 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 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"
}
}