init: initialization of project structure
Showing
- .env 1 addition, 0 deletions.env
- .gitignore 3 additions, 0 deletions.gitignore
- package-lock.json 2812 additions, 50 deletionspackage-lock.json
- package.json 15 additions, 11 deletionspackage.json
- src/Controllers/ExcelController.ts 10 additions, 0 deletionssrc/Controllers/ExcelController.ts
- src/DAOs/README.txt 1 addition, 0 deletionssrc/DAOs/README.txt
- src/Enum/README.txt 1 addition, 0 deletionssrc/Enum/README.txt
- src/Interfaces/README.txt 1 addition, 0 deletionssrc/Interfaces/README.txt
- src/Models/README.txt 1 addition, 0 deletionssrc/Models/README.txt
- src/Services/README.txt 1 addition, 0 deletionssrc/Services/README.txt
- src/index.ts 33 additions, 0 deletionssrc/index.ts
- src/routes.ts 46 additions, 0 deletionssrc/routes.ts
.env
0 → 100644
This diff is collapsed.
{ | ||
"name": "repp_backend", | ||
"version": "1.0.0", | ||
"description": "Herramienta de calculo de requerimiento energetico ponderado para una poblacion. Este repositorio contiene el backend.", | ||
"description": "Herramienta de calculo del requerimiento energetico ponderado de una poblacion, llamado REPP.", | ||
"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": { | ||
"@typescript-eslint/eslint-plugin": "^4.29.3", | ||
"@typescript-eslint/parser": "^4.29.3", | ||
"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": "^7.24.0", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"husky": "^4.3.8", | ||
"jest": "^27.0.6", | ||
"lint-staged": "^11.1.2" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
"pretest": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.fing.edu.uy/julieta.dubra/repp.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
... | ... |
src/Controllers/ExcelController.ts
0 → 100644
src/DAOs/README.txt
0 → 100644
src/Enum/README.txt
0 → 100644
src/Interfaces/README.txt
0 → 100644
src/Models/README.txt
0 → 100644
src/Services/README.txt
0 → 100644
src/index.ts
0 → 100644
src/routes.ts
0 → 100644
Please register or sign in to comment