Initial commit

This commit is contained in:
Torsten Schulz
2024-07-17 22:24:56 +02:00
commit 3880a265eb
126 changed files with 10959 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "yourpart",
"version": "3.0.0-pre-alpha.0.1",
"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 serve"
},
"devDependencies": {
"concurrently": "^7.0.0",
"npm-run-all": "^4.1.5",
"nodemon": "^2.0.15"
}
}