19 lines
474 B
JSON
19 lines
474 B
JSON
{
|
|
"name": "LogFrog",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node backend/src/app.js",
|
|
"server": "nodemon backend/src/app.js",
|
|
"client": "cd frontend && npm run dev",
|
|
"dev": "concurrently \"npm run server\" \"npm run client\""
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"concurrently": "^8.2.1",
|
|
"dotenv": "^16.3.1",
|
|
"nodemon": "^3.0.1"
|
|
}
|
|
} |