Added the eslint dev dependencies & ci scripts to the package.json & yarn.lock

This commit is contained in:
2023-01-15 02:06:02 +01:00
parent 03f21d30ca
commit d93d46b9b9
2 changed files with 688 additions and 9 deletions

View File

@ -7,6 +7,9 @@
"private": true,
"scripts": {
"dev": "nodemon --watch \"src/**\" -r tsconfig-paths/register src/server.ts",
"ci:eslint": "eslint \"**/*.{ts,tsx}\" --max-warnings=0",
"ci:tsc": "tsc --noemit",
"ci:install": "yarn install --immutable --immutable-cache --check-cache",
"build": "tsc && tsc-alias"
},
"dependencies": {
@ -17,6 +20,9 @@
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",