27 lines
600 B
JSON
27 lines
600 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend application",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "node main.js",
|
|
"lint": "eslint ."
|
|
},
|
|
"keywords": [
|
|
"backend",
|
|
"mariadb"
|
|
],
|
|
"author": "Nombre del autor",
|
|
"license": "Licencia del proyecto (por ejemplo, MIT)",
|
|
"dependencies": {
|
|
"dotenv": "^16.4.5",
|
|
"log4js": "^6.9.1",
|
|
"mariadb": "^2.5.3",
|
|
"mysql2": "^3.10.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-import": "^2.29.1"
|
|
}
|
|
}
|