81 lines
2.5 KiB
JSON
81 lines
2.5 KiB
JSON
{
|
|
"name": "@mifi/auth-service",
|
|
"version": "1.0.17",
|
|
"author": "mifi (Mike Fitzpatrick)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:package": "tsc -p ./tsconfig.package.json",
|
|
"build:production": "tsc -p ./tsconfig.production.json",
|
|
"format": "prettier:fix && lint:fix",
|
|
"lint": "eslint --ext .ts,.tsx src/",
|
|
"lint:fix": "eslint --fix --ext .ts,.tsx src/",
|
|
"prettier": "prettier --check 'src/**/*.ts'",
|
|
"prettier:fix": "prettier --write 'src/**/*.ts'",
|
|
"serve-dev": "ts-node src/index.ts",
|
|
"serve": "node lib/index.js",
|
|
"start": "nodemon",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.8",
|
|
"@babel/preset-env": "^7.21.5",
|
|
"@babel/preset-typescript": "^7.21.5",
|
|
"@simplewebauthn/typescript-types": "^7.x.x",
|
|
"@tsconfig/node16": "^1.0.4",
|
|
"@types/jest": "^29.5.1",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/koa": "^2.13.5",
|
|
"@types/koa-bodyparser": "^4.3.10",
|
|
"@types/koa-cookie": "^1.0.0",
|
|
"@types/koa-router": "^7.4.4",
|
|
"@types/koa-session": "^5.10.6",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/node": "^18.14.0",
|
|
"@types/uuid": "^9.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
"babel-jest": "^29.5.0",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-import-resolver-typescript": "^3.5.5",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-n": "^15.0.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.20",
|
|
"prettier": "^2.8.4",
|
|
"prettier-eslint": "^15.0.1",
|
|
"prettier-eslint-cli": "^7.1.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"ts-node": "^10.x.x",
|
|
"typescript": "^4.x.x"
|
|
},
|
|
"dependencies": {
|
|
"@mifi/auth-common": "^1.0.15",
|
|
"@mifi/auth-db": "^1.0.20",
|
|
"@mifi/auth-gatekeeper": "^1.0.12",
|
|
"@mifi/services-common": "^1.0.16",
|
|
"@simplewebauthn/server": "^7.x.x",
|
|
"base64url": "^3.x.x",
|
|
"dotenv": "^16.x.x",
|
|
"http-status-codes": "^2.x.x",
|
|
"jsonwebtoken": "^9.x.x",
|
|
"koa": "^2.x.x",
|
|
"koa-bodyparser": "^4.x.x",
|
|
"koa-compose": "^4.1.0",
|
|
"koa-cookie": "^1.x.x",
|
|
"koa-router": "^12.x.x",
|
|
"koa-session": "^6.x.x",
|
|
"luxon": "^3.3.0",
|
|
"uuid": "^9.x.x"
|
|
},
|
|
"description": "",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.mifi.dev/mifi/auth-service.git"
|
|
},
|
|
"packageManager": "yarn@3.5.1"
|
|
}
|