Lambda-School-Labs/Studium-BE

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "Studium-BE",
  "version": "1.0.0",
  "description": "---",
  "main": "index.js",
  "scripts": {
    "server": "nodemon index.js",
    "start": "node index.js",
    "test": "jest --watchAll --verbose",
    "coverage": "jest --coverage --detectOpenHandles --forceExit || true"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Lambda-School-Labs/Studium-BE.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Lambda-School-Labs/Studium-BE/issues"
  },
  "homepage": "https://github.com/Lambda-School-Labs/Studium-BE#readme",
  "dependencies": {
    "bcryptjs": "^2.4.3",
    "cors": "^2.8.5",
    "cross-env": "^7.0.2",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "helmet": "^3.22.0",
    "jsonwebtoken": "^8.5.1",
    "knex": "^0.21.1",
    "knex-cleaner": "^1.3.0",
    "morgan": "^1.10.0",
    "pg": "^8.2.1",
    "request": "^2.88.2",
    "uuid": "^8.3.0"
  },
  "devDependencies": {
    "jest": "^26.0.1",
    "nodemon": "^2.0.4",
    "supertest": "^4.0.2"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "**/*.js",
      "!**/node_modules/**",
      "!**/vendor/**",
      "!**/coverage/**",
      "!**/db/**",
      "!**/knexfile.js",
      "!**/index.js",
      "!**/users-router.js",
      "!**/authenticate-middleware.js"
    ]
  }
}