-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
111 lines (111 loc) · 3.27 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
{
"name": "@eventcatalog/core",
"homepage": "https://github.com/event-catalog/eventcatalog",
"repository": {
"type": "git",
"url": "https://github.com/event-catalog/eventcatalog.git"
},
"type": "module",
"version": "2.18.6",
"publishConfig": {
"access": "public"
},
"bin": {
"eventcatalog": "bin/eventcatalog.js"
},
"files": [
"eventcatalog/",
"!eventcatalog/**/__tests__/",
"bin/",
"dist/",
"default-files-for-collections/"
],
"scripts": {
"dev": "astro dev",
"build:bin": "tsup",
"prepublishOnly": "npm run build:bin",
"test": "vitest",
"test:ci": "node scripts/ci/test.js",
"test:e2e": "playwright test",
"start": "astro dev",
"build": "astro build",
"build:cd": "node scripts/build-ci.js",
"preview": "astro preview",
"astro": "astro",
"start:catalog": "node scripts/start-catalog-locally.js",
"verify-build:catalog": "rimraf dist && npm run build:cd",
"changeset": "changeset",
"generate": "npm run build:bin && npx . generate",
"release": "changeset publish",
"format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,json,astro}\"",
"format:diff": "prettier --config .prettierrc --list-different \"**/*.{js,jsx,ts,tsx,json,astro}\""
},
"dependencies": {
"@astrojs/markdown-remark": "^6.0.1",
"@astrojs/mdx": "^4.0.2",
"@astrojs/react": "^4.1.0",
"@astrojs/tailwind": "^5.1.3",
"@asyncapi/avro-schema-parser": "^3.0.24",
"@asyncapi/react-component": "^2.4.3",
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"@iconify-json/logos": "^1.2.4",
"@parcel/watcher": "^2.4.1",
"@stoplight/json-schema-viewer": "^4.7.0",
"@stoplight/mosaic": "^1.53.2",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-table": "^8.17.3",
"@xyflow/react": "^12.3.6",
"astro": "^5.0.5",
"astro-expressive-code": "^0.38.3",
"astro-pagefind": "^1.6.0",
"astro-seo": "^0.8.4",
"axios": "^1.7.7",
"commander": "^12.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dagre": "^0.8.5",
"diff": "^7.0.0",
"diff2html": "^3.4.48",
"glob": "^10.4.1",
"gray-matter": "^4.0.3",
"html-to-image": "^1.11.11",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "4.6.2",
"lucide-react": "^0.453.0",
"mermaid": "^11.4.1",
"rapidoc": "^9.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-slug": "^6.0.0",
"remark-comment": "^1.0.0",
"remark-directive": "^3.0.0",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.7",
"semver": "7.6.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"unist-util-visit": "^5.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@changesets/cli": "^2.27.5",
"@playwright/test": "^1.48.1",
"@types/dagre": "^0.7.52",
"@types/diff": "^5.2.2",
"@types/js-yaml": "^4.0.9",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.merge": "4.6.9",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.5.8",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"tsup": "^8.1.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "2.1.6"
}
}