{
  "name": "@rakered/accounts",
  "version": "1.7.0",
  "description": "An account package for managing user accounts in mongodb, including registration & recovery emails.",
  "keywords": [
    "nodejs",
    "mongodb",
    "auth"
  ],
  "main": "./lib/index.js",
  "source": "./src/index.ts",
  "license": "AGPL-3.0 OR COMMERCIAL",
  "author": "Stephan Meijer <stephan@meijer.ws>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rakered/rakered.git",
    "directory": "packages/accounts"
  },
  "scripts": {
    "build": "rimraf ./lib *.tsbuildinfo && tsc",
    "prepare": "npm run build",
    "test": "jest --coverage --runInBand",
    "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand",
    "bump:patch": "npm version patch -m 'release(accounts): cut the %s release'",
    "bump:minor": "npm version minor -m 'release(accounts): cut the %s release'",
    "bump:major": "npm version major -m 'release(accounts): cut the %s release'"
  },
  "files": [
    "lib"
  ],
  "dependencies": {
    "@rakered/email": "^1.3.1",
    "@rakered/errors": "^1.1.0",
    "@rakered/mongo": "^1.2.0",
    "argon2": "^0.41.1",
    "bcryptjs": "^3.0.2",
    "common-tags": "^1.8.0",
    "jsonwebtoken": "^8.5.1",
    "react": "^17.0.1",
    "the-big-username-blacklist": "^1.5.2"
  },
  "devDependencies": {
    "@types/glob": "^7.1.1",
    "@types/jest": "^26.0.20",
    "@types/mongodb": "^3.6.3",
    "@types/node": "^13.13.40",
    "@types/react": "^17.0.2",
    "jest": "^26.6.3",
    "jest-partial": "^1.0.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.4.4",
    "typescript": "^4.1.3"
  }
}
