Skip to content
Snippets Groups Projects
This project manages its dependencies using npm. Learn more
package.json 1.31 KiB
{
  "name": "repp_backend",
  "version": "1.0.0",
  "description": "Herramienta de calculo del requerimiento energetico ponderado de una poblacion, llamado REPP.",
  "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.30.0",
    "@typescript-eslint/parser": "^4.30.0",
    "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.24.0",
    "eslint-plugin-react-hooks": "^4.2.0",
    "husky": "^4.3.8",
    "jest": "^27.0.6",
    "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"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.fing.edu.uy/julieta.dubra/repp.git"
  },
  "author": "",
  "license": "ISC",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "./node_modules/.bin/eslint --fix",
      "git add"
    ]
  }
}