You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
686 B
27 lines
686 B
{
|
|
"name": "restaurant-table-management",
|
|
"version": "1.0.0",
|
|
"description": "Restaurant Table Management API with MySQL",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": ["express", "api", "nodejs", "mysql", "restaurant"],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"helmet": "^7.1.0",
|
|
"morgan": "^1.10.0",
|
|
"mysql2": "^3.6.3",
|
|
"sequelize": "^6.35.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1",
|
|
"sequelize-cli": "^6.6.2"
|
|
}
|
|
}
|
|
|