Evo.Auth/apps/api/package.json
vchikalkin 3bbdf1b8a7 Merge feature/ldap-account-auth-modes:
Squashed commit of the following:

commit 0cf879b38318f9b27a74ddf556ea02f49ab8ea02
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 14:12:17 2023 +0300

    apps/api: add swagger

commit 5d99d2bbbc186e40bfcd8a4aa84ea57e76f8d046
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 12:50:38 2023 +0300

    apps/api: rename users module -> account

commit 724d8ccf2844109593567dc004bd0338b9a5d64c
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 12:29:48 2023 +0300

    apps/api: add users functional

commit 9c7665440623a7bc8780186b0f4aeb86039b7e3f
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 00:21:15 2023 +0300

    docker-compose.yml: fix mongo volume path

commit bc82c05afd3b8829b48b2a956398b05ef15bd361
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 00:18:37 2023 +0300

    docker-compose.yml: add mongo

commit d372007e0e841b1ca0fc89acf5bdf98c2a27fe72
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Wed Nov 1 00:06:12 2023 +0300

    apps/api: move /auth method to root

commit a42aa89aec567845d26748d43fae5554e8a29e6c
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Tue Oct 31 21:58:39 2023 +0300

    apps/api: move redis caching feature to ldap module

commit 01422661e82f82fd8080a760fe30428247517c9b
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Tue Oct 31 17:50:55 2023 +0300

    apps/api: remove apps controller & service

commit e0f9893a1aea546839086e84940adb820583be27
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Tue Oct 31 17:49:26 2023 +0300

    apps/api: rename authModule -> ldapModule

commit f1114cb703c4759d2b2b899031182adace81f898
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Tue Oct 31 17:29:01 2023 +0300

    apps/api: remove ldap module and replace with utils

commit a8179a324a23e4553ce0a58de02ad303ce49ca1e
Author: vchikalkin <djchikalkin@gmail.com>
Date:   Tue Oct 31 16:30:15 2023 +0300

    apps/api: add CRUD account feature
2023-11-01 14:22:09 +03:00

91 lines
2.5 KiB
JSON

{
"name": "api",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@fastify/cookie": "^9.1.0",
"@fastify/static": "^6.12.0",
"@nestjs/cache-manager": "^2.1.0",
"@nestjs/cli": "^10.1.18",
"@nestjs/common": "^10.2.7",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.7",
"@nestjs/jwt": "^10.1.1",
"@nestjs/mapped-types": "*",
"@nestjs/mongoose": "^10.0.1",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/platform-fastify": "^10.2.7",
"@nestjs/swagger": "^7.1.14",
"bcrypt": "^5.1.1",
"cache-manager": "^5.2.4",
"cache-manager-ioredis": "^2.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"ldap-authentication": "2.3.1",
"mongoose": "^7.6.3",
"radash": "^11.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.7",
"@types/bcrypt": "^5.0.1",
"@types/cache-manager": "^4.0.3",
"@types/ioredis": "^4.28.10",
"@types/jest": "29.5.5",
"@types/ldap-authentication": "^2.2.1",
"@types/node": "^20.8.6",
"@types/supertest": "^2.0.14",
"@vchikalkin/eslint-config-awesome": "^1.1.2",
"eslint": "^8.51.0",
"jest": "29.7.0",
"prettier": "^3.0.3",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}