-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.58 KB
/
package.json
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
{
"name": "@fastnloud/nest-iam",
"version": "3.0.0-rc.2",
"description": "Identity access management module for Nest that provides a simple customizable authentication service interface.",
"homepage": "https://github.com/fastnloud/nest-iam#readme",
"main": "dist/index.js",
"author": "jaap",
"license": "MIT",
"scripts": {
"build": "tsc",
"prettier": "prettier --check \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"preversion": "npm run build"
},
"bin": {
"hash-password": "dist/prompts/hash-password.prompt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastnloud/nest-iam.git"
},
"dependencies": {
"bcrypt": "^5.1.0",
"class-validator": "^0.14.0",
"joi": "^17.9.2",
"prompts": "^2.4.2"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/config": "^2.0.0 || ^3.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"@nestjs/cqrs": "^9.0.0 || ^10.0.0",
"@nestjs/jwt": "^10.0.0",
"@nestjs/swagger": "^6.0.0 || ^7.0.0",
"express": "^4.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/node": "^18.0.0",
"@types/prompts": "^2.4.4",
"npm-check-updates": "^16.10.13",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"keywords": [
"nest",
"iam",
"authentication",
"jwt"
],
"files": [
"dist/**/*.{js,ts}"
]
}