-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
{
"name": "nestjs-authentication",
"version": "0.4.3",
"description": "A nestjs module that support multiple authentications provider",
"author": "Alex Hermann <contact@pop-code.com>",
"repository": "https://github.com/Pop-Code/nestjs-authentication.git",
"license": "MIT",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -Rf dist && tsc -b tsconfig.build.json",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"lint": "eslint .",
"doc": "rm -Rf ./docs && typedoc && touch ./docs/.nojekyll",
"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"
},
"peerDependencies": {
"@nestjs/common": "^8",
"@nestjs/core": "^8",
"@nestjs/passport": "^8",
"passport": "^0.5.2"
},
"dependencies": {
"debug": "^4.3.3",
"jsonwebtoken": "^8.5.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/testing": "^8.4.4",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.27",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"express-session": "^1.17.2",
"i18next": "^21.6.16",
"jest": "^27.5.1",
"passport": "^0.5.2",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts}",
"!src/index.ts",
"!**/test/**"
],
"coverageDirectory": "./coverage"
},
"packageManager": "yarn@3.2.0"
}