-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
112 lines (112 loc) · 3.32 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
{
"name": "nestjs-asyncapi",
"version": "1.3.0",
"description": "NestJS AsyncAPI module - generate documentation of your event-based services using decorators",
"author": "Ilya Moroz",
"license": "MIT",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/flamewow/nestjs-asyncapi"
},
"validate-branch-name": {
"pattern": "^(main|dev){1}$|^(feat|fix|release|test|refactor|docs|perf|style|chore)/.+$",
"errorMsg": "The branch name isn't valid."
},
"keywords": [
"asyncapi",
"nest",
"nestjs",
"swagger",
"openapi",
"documentation",
"socket.io",
"websockets",
"pubsub",
"microservices"
],
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^9.0.0",
"@nestjs/core": "^10.0.0 || ^9.0.0",
"@nestjs/swagger": "^7.0.0 || ^6.0.0",
"@nestjs/websockets": "^10.0.0 || ^9.0.0"
},
"peerDependenciesMeta": {
"@nestjs/websockets": {
"optional": true
}
},
"dependencies": {
"@asyncapi/generator": "1.13.1",
"@asyncapi/html-template": "0.28.4",
"js-yaml": "4.1.0",
"reflect-metadata": "0.2.1"
},
"devDependencies": {
"@nestjs/cli": "10.3.2",
"@nestjs/microservices": "10.3.3",
"@nestjs/platform-express": "10.3.7",
"@nestjs/platform-fastify": "10.3.3",
"@nestjs/platform-socket.io": "10.3.3",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.3",
"@nestjs/websockets": "10.3.3",
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/js-yaml": "4.0.9",
"@types/node": "20.11.14",
"@types/supertest": "2.0.12",
"@types/url-join": "4.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.10",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"prettier": "3.2.4",
"release-it": "17.0.3",
"socket.io": "4.7.4",
"socket.io-client": "4.7.4",
"supertest": "6.3.3",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.3"
},
"config": {
"puppeteer_skip_chromium_download": true
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
]
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepare": "husky install",
"format": "prettier --write \"lib/**/*.{js,ts,json}\" \"e2e/**/*.{js,ts,json}\"",
"lint": "eslint --fix \"lib/**/*.ts\" \"sample/**/*.ts\" \"test/**/*.ts\"",
"pre-commit": "lint-staged",
"prestart": "npm install && npm run build",
"make:snapshots": "bash misc/take-snaphots.sh",
"---execution---": "",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --watch --debug",
"---tests---": "",
"test:e2e": "jest --runInBand --config test/configs/jest-e2e.config.ts",
"---npm---": "",
"publish:next": "npm publish --access public --tag next",
"publish:beta": "npm publish --access public --tag beta",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it"
}
}