forked from asyncapi/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.65 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
{
"name": "@asyncapi/studio",
"version": "0.2.6",
"description": "One place that allows you to develop an AsyncAPI document, validate it, convert it to the latest version, preview the documentation and visualize the events flow.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/studio/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/studio.git"
},
"keywords": [
"asyncapi",
"documentation",
"studio",
"playground"
],
"author": {
"name": "The AsyncAPI maintainers"
},
"files": [
"/build",
"./README.md",
"./LICENSE"
],
"dependencies": {
"@asyncapi/converter": "^0.6.0",
"@asyncapi/parser": "^1.10.1",
"@asyncapi/react-component": "^1.0.0-next.19",
"@asyncapi/specs": "^2.12.0",
"@headlessui/react": "1.4.1",
"@hookstate/core": "^3.0.12",
"@monaco-editor/react": "^4.2.2",
"js-base64": "^3.7.2",
"js-file-download": "^0.4.12",
"js-yaml": "^4.1.0",
"monaco-editor": "^0.28.1",
"monaco-yaml": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.6.9",
"react-hot-toast": "2.1.1",
"react-icons": "^4.2.0",
"react-split-pane": "^0.1.92",
"tailwindcss": "^2.2.16",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "cross-env DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "npm run test:unit",
"test:unit": "cross-env DISABLE_ESLINT_PLUGIN=true react-scripts test --detectOpenHandles",
"eject": "react-scripts eject",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"generate:readme:toc": "markdown-toc -i README.md",
"generate:assets": "npm run build && npm run generate:readme:toc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"prepublishOnly": "npm run build && npm run generate:readme:toc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.3",
"@types/node": "^12.20.26",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"conventional-changelog-conventionalcommits": "^4.6.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.10.0",
"markdown-toc": "^1.2.0",
"react-scripts": "4.0.3",
"semantic-release": "^18.0.0",
"typescript": "^4.4.3"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(monaco-editor)/)"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}