fix: fix project initialization
This diff is collapsed.
... | ... | @@ -2,9 +2,15 @@ |
"name": "repp_backend", | ||
"version": "1.0.0", | ||
"description": "Herramienta de calculo del requerimiento energetico ponderado de una poblacion, llamado REPP.", | ||
"main": "index.js", | ||
"dependencies": {}, | ||
"main": "index.ts", | ||
"dependencies": { | ||
"express": "^4.17.1", | ||
"swagger-jsdoc": "^6.1.0", | ||
"swagger-ui-express": "^4.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.13", | ||
"@types/node": "^16.7.10", | ||
"@typescript-eslint/eslint-plugin": "^4.29.3", | ||
"@typescript-eslint/parser": "^4.29.3", | ||
"eslint": "^7.32.0", | ||
... | ... | @@ -15,9 +21,13 @@ |
"eslint-plugin-react-hooks": "^4.2.0", | ||
"husky": "^4.3.8", | ||
"jest": "^27.0.6", | ||
"lint-staged": "^11.1.2" | ||
"lint-staged": "^11.1.2", | ||
"nodemon": "^2.0.12", | ||
"ts-node": "^10.2.1", | ||
"typescript": "^4.4.2" | ||
}, | ||
"scripts": { | ||
"start": "nodemon ./src/index.ts", | ||
"test": "jest", | ||
"pretest": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix" | ||
}, | ||
... | ... |
Please register or sign in to comment