-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.09 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ciscode/authentication-kit",
"type": "module",
"version": "1.5.4",
"description": "NestJS auth kit with local + OAuth, JWT, RBAC, password reset.",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CISCODE-MA/AuthKit.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"clean": "rm -rf dist coverage",
"start": "node dist/standalone.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"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",
"prepack": "npm run build",
"release": "semantic-release",
"prepare": "husky"
},
"keywords": [
"authentication",
"nest",
"oauth",
"jwt",
"rbac",
"password-reset"
],
"author": "Ciscode",
"license": "MIT",
"dependencies": {
"axios": "^1.13.4",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.6.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.2",
"nodemailer": "^7.0.13",
"passport": "^0.7.0",
"passport-azure-ad-oauth2": "^0.0.4",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"@nestjs/mongoose": "^10.0.0 || ^11.0.0",
"@nestjs/platform-express": "^10.0.0 || ^11.0.0",
"mongoose": "^7.0.0 || ^9.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"@nestjs/common": "^11.1.12",
"@nestjs/core": "^11.1.12",
"@nestjs/mongoose": "^11.0.4",
"@nestjs/platform-express": "^11.1.12",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.25",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.19.30",
"@types/passport-facebook": "^3.0.4",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-local": "^1.0.38",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"mongoose": "^9.1.5",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"ts-jest": "^29.2.5",
"semantic-release": "^25.0.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript-eslint": "^8.50.1",
"typescript": "^5.7.3"
}
}