forked from nestjs/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@nestjs/passport",
"version": "8.0.0",
"description": "Nest - modern, fast, powerful node.js web framework (@passport)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"passport": "^0.4.0"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-angular": "13.1.0",
"@nestjs/common": "8.0.5",
"@types/node": "14.17.7",
"@types/passport": "1.0.7",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"husky": "7.0.1",
"lint-staged": "11.1.1",
"passport": "0.4.1",
"prettier": "2.3.2",
"release-it": "14.10.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.3.0",
"typescript": "4.3.5"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/passport"
}
}