configuracion inicial
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
__test__/README.md
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "repp_backend", | ||
"version": "1.0.0", | ||
"description": "Herramienta de calculo de requerimiento energetico ponderado para una poblacion. Este repositorio contiene el backend.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.fing.edu.uy/julieta.dubra/repp_backend.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"eslint": "^7.32.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-plugin-import": "^2.24.2", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-react": "^7.25.1", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"husky": "^4.3.8", | ||
"lint-staged": "^11.1.2" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.{js,tsx}": [ | ||
"./node_modules/.bin/eslint --fix", | ||
"git add" | ||
] | ||
} | ||
} |
Please register or sign in to comment