-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
107 lines (107 loc) · 3.47 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
{
"name": "@asyncapi/server-api",
"version": "0.16.22",
"description": "Server API providing official AsyncAPI tools",
"license": "Apache-2.0",
"homepage": "https://github.com/asyncapi/server-api",
"bugs": {
"url": "https://github.com/asyncapi/server-api/issues"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/server-api.git"
},
"keywords": [
"server",
"api",
"asyncapi",
"generator",
"tooling"
],
"author": {
"name": "The AsyncAPI maintainers"
},
"scripts": {
"start:dev": "npm run build:dev && cross-env NODE_ENV=development node dist/server.js",
"start:prod": "npm run build:prod && cross-env NODE_ENV=production node dist/server.js",
"start:docker": "NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build:dev": "tsc",
"build:prod": "tsc",
"test": "cross-env NODE_ENV=test jest",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"generate:assets": "npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md",
"docker:build": "docker build --tag asyncapi/server-api .",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"@asyncapi/avro-schema-parser": "^1.1.0",
"@asyncapi/bundler": "^0.4.0",
"@asyncapi/converter": "^1.4.17",
"@asyncapi/diff": "^0.4.1",
"@asyncapi/dotnet-nats-template": "^0.12.1",
"@asyncapi/generator": "^1.9.18",
"@asyncapi/go-watermill-template": "^0.2.74",
"@asyncapi/html-template": "^0.28.4",
"@asyncapi/java-spring-cloud-stream-template": "^0.13.4",
"@asyncapi/java-spring-template": "^1.5.0",
"@asyncapi/java-template": "^0.2.0",
"@asyncapi/markdown-template": "^1.4.0",
"@asyncapi/nodejs-template": "^2.0.1",
"@asyncapi/nodejs-ws-template": "^0.9.33",
"@asyncapi/openapi-schema-parser": "^2.0.3",
"@asyncapi/parser": "^1.18.1",
"@asyncapi/problem": "^1.0.0",
"@asyncapi/python-paho-template": "^0.2.13",
"@asyncapi/raml-dt-schema-parser": "^2.0.1",
"@asyncapi/specs": "^4.2.1",
"@asyncapi/ts-nats-template": "^0.10.3",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"archiver": "^5.3.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^6.0.1",
"js-yaml": "^4.1.0",
"redoc-express": "^1.0.0",
"types": "^0.1.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/body-parser": "^1.19.1",
"@types/compression": "^1.7.2",
"@types/config": "0.0.40",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.10.3",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.11.0",
"jest": "^27.4.1",
"markdown-toc": "^1.2.0",
"nodemon": "^2.0.13",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}