Add dependencies for lint. Remove package-lock
parent
e3d044d3
No related branches found
No related tags found
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
eslint.config.mjs
0 → 100644
package-lock.json
deleted
100644 → 0
This diff is collapsed.
{ | ||
"name": "<<projectName>>-api", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "app.js", | ||
"scripts": { | ||
"start": "node app.js", | ||
"dev": "node app.js", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint . --fix", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"express": "^4.21.1" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.13.0", | ||
"eslint": "^9.13.0", | ||
"globals": "^15.11.0" | ||
} | ||
} |
Please register or sign in to comment