Lambda-School-Labs/allay-be

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "allay-be",
  "version": "1.0.0",
  "description": "🚫 Note: All lines that start with 🚫 are instructions and should be deleted before this is posted to your portfolio. This is intended to be a guideline. Feel free to add your own flare to it.",
  "main": "index.js",
  "scripts": {
    "start": "node index.js",
    "server": "nodemon index.js",
    "test": "jest --detectOpenHandles --forceExit",
    "coverage": "jest --coverage --detectOpenHandles --forceExit || true",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md)\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Lambda-School-Labs/allay-be.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Lambda-School-Labs/allay-be/issues"
  },
  "homepage": "https://github.com/Lambda-School-Labs/allay-be#readme",
  "dependencies": {
    "bcryptjs": "^2.4.3",
    "cors": "^2.8.5",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "faker": "^4.1.0",
    "helmet": "^3.21.2",
    "jsonwebtoken": "^8.5.1",
    "knex": "^0.20.11",
    "knex-cleaner": "^1.3.0",
    "morgan": "^1.9.1",
    "nodemon": "^2.0.2",
    "pg": "^7.18.2"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "**/*.{js,jsx}",
      "!**/node_modules/**",
      "!**/vendor/**",
      "!**/migrations/**",
      "!**/seeds/**",
      "!**/coverage/**"
    ],
    "testPathIgnorePatterns": [
      "/utils/"
    ]
  },
  "devDependencies": {
    "cross-env": "^7.0.0",
    "eslint": "^7.0.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.3",
    "jest": "^25.1.0",
    "prettier": "^2.0.5",
    "supertest": "^4.0.2"
  }
}