18 lines
604 B
JSON
18 lines
604 B
JSON
{
|
|
"name": "tiktok-rezepte",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
|
|
"start:backend": "cd backend && npm start",
|
|
"start:frontend": "cd frontend && npm run build && npm run preview",
|
|
"install:all": "cd backend && npm install && cd ../frontend && npm install"
|
|
},
|
|
"dependencies": {
|
|
"concurrently": "^10.0.5"
|
|
}
|
|
}
|