18 lines
512 B
JSON
18 lines
512 B
JSON
{
|
|
"name": "svoya-igra",
|
|
"version": "1.0.0",
|
|
"description": "Multiplayer quiz game similar to Jeopardy",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run server\" \"npm run client\"",
|
|
"server": "cd server && npm run dev",
|
|
"client": "cd client && npm run dev",
|
|
"install-all": "npm install && cd server && npm install && cd ../client && npm install"
|
|
},
|
|
"keywords": ["quiz", "game", "multiplayer"],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|