forked from femike/swagger-protect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 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
{
"name": "@femike/swagger-protect",
"version": "2.0.1",
"description": "protect swagger openapi ui",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:unit": "jest --testRegex=regexp.spec.ts",
"prebuild": "rm -rf ./dist",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"build:watch:express": "rm -rf ./samples/express/node_modules/@femike/swagger-protect/dist && tsc -w -p tsconfig.hot.express.json",
"build:watch:nest-express": "rm -rf ./samples/nest-express/node_modules/@femike/swagger-protect/dist && tsc -w -p tsconfig.hot.nest-express.json",
"compodoc": "compodoc -p tsconfig.build.json -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/femike/swagger-protect.git"
},
"keywords": [
"typescript",
"swagger",
"protect",
"guard",
"ui",
"nestjs",
"nest",
"express",
"openapi",
"backend",
"frameworks"
],
"author": "femike <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/femike/swagger-protect/issues"
},
"homepage": "https://github.com/femike/swagger-protect#readme",
"files": [
"dist"
],
"devDependencies": {
"@compodoc/compodoc": "^1.1.14",
"@nestjs/common": "^8.0.5",
"@nestjs/testing": "^8.0.6",
"@types/cookie-parser": "^1.4.2",
"@types/express": "4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^26.0.0",
"express": "^4.17.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/swagger": "^5.0.9",
"class-transformer": "*",
"class-validator": "*",
"cookie-parser": "^1.4.5",
"rxjs": "7.3.0"
}
}