24 lines
477 B
JSON
24 lines
477 B
JSON
{
|
|
"name": "sunnymh-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for SunnyMH manga application",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"test": "jest"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.5.0",
|
|
"express": "^4.18.2",
|
|
"mysql2": "^3.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22"
|
|
}
|
|
}
|