-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
137 lines (137 loc) · 4.17 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@mercury-labs/nest-auth",
"version": "2.0.0",
"description": "Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.",
"author": "duysolo <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/duysolo/mercury-auth.git"
},
"keywords": [
"mercury-labs",
"basic auth",
"jwt auth",
"nestjs auth",
"nestjs basic auth",
"nestjs jwt auth",
"nestjs jwt auth with cookie",
"basic auth",
"jwt auth",
"jwt auth with cookie",
"nestjs auth with cookie",
"nestjs auth graphql"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "rm -rf ./dist && nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"increase-version": "node scripts/increase-version.js",
"test": "jest --verbose=true",
"test:watch": "jest --verbose=true --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 --verbose=true --config ./test/jest-e2e.json",
"test:all": "npm run test && npm run test:cov && npm run test:e2e"
},
"dependencies": {
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@nestjs/core": "^10.0.5",
"@nestjs/common": "^10.0.5",
"@nestjs/cqrs": "^10.0.1",
"@nestjs/jwt": "^10.1.0",
"@nestjs/passport": "^10.0.0",
"@nestjs/graphql": "^12.0.7",
"@nestjs/swagger": "^7.1.1",
"@fastify/cookie": "^8.3.0",
"@nestjs/cli": "^10.1.7",
"@nestjs/platform-express": "^10.0.5",
"@nestjs/platform-fastify": "^10.0.5",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.5",
"@rushstack/eslint-config": "~3.3.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@types/passport-jwt": "^3.0.8",
"@types/passport-local": "^1.0.35",
"@types/passport-strategy": "^0.2.35",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"uuid": "^11.0.3",
"rimraf": "^5.0.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"moment": "^2.29.4",
"cookie-parser": "^1.4.6",
"graphql": "^16.7.1"
},
"peerDependencies": {
"@nestjs/core": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/common": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/cqrs": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/jwt": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/passport": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/graphql": "^12.0.0 || ^11.0.0 || ^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/swagger": "^7.0.0 || ^6.0.0 || ^5.0.0",
"uuid": "^11.0.0 || ^10.0.0",
"moment": "^2.0.0",
"graphql": "^16.0.0 || ^15.0.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.13.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0"
},
"peerDependenciesMeta": {
"graphql": {
"optional": true
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s",
"!**/node_modules/**",
"!**/__tests__/**",
"!**/index.ts"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/duysolo/mercury-auth/issues"
},
"homepage": "https://github.com/duysolo/mercury-auth#readme",
"directories": {
"test": "test"
}
}