22 lines
434 B
JSON
22 lines
434 B
JSON
{
|
|
"name": "omnisupport-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for OmniSupport AI",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "nodemon index.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"mysql2": "^3.9.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"multer": "^1.4.5-lts.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.0"
|
|
}
|
|
}
|