forked from event-catalog/eventcatalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.91 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
{
"name": "@eventcatalog/core",
"type": "module",
"version": "2.7.15",
"publishConfig": {
"access": "public"
},
"bin": {
"eventcatalog": "bin/dist/eventcatalog.cjs"
},
"scripts": {
"dev": "concurrently \"node scripts/watcher.js\" \"npm run scripts:hydrate-content && astro dev\"",
"dev:local": "concurrently \"node scripts/watcher.js\" \"astro dev\"",
"build:bin": "tsup",
"prepublishOnly": "npm run build:bin",
"test": "vitest --config vitest.config.ts",
"test:ci": "node scripts/ci/test.js",
"start": "astro dev",
"build": "npm run scripts:hydrate-content && node scripts/analytics/log-build.js && astro check --minimumSeverity error && astro build",
"build:cd": "node scripts/build-ci.js",
"preview": "astro preview",
"astro": "astro",
"scripts:hydrate-content": "node scripts/catalog-to-astro-content-directory.js",
"start:catalog": "node scripts/start-catalog-locally.js",
"verify-build:catalog": "rimraf dist && npm run build:cd",
"changeset": "changeset",
"generate": "node scripts/generate.js",
"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/check": "^0.9.3",
"@astrojs/markdown-remark": "^5.2.0",
"@astrojs/mdx": "^3.1.5",
"@astrojs/react": "^3.6.2",
"@astrojs/tailwind": "^5.1.0",
"@asyncapi/react-component": "^2.2.2",
"@changesets/cli": "^2.27.5",
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"@stoplight/json-schema-viewer": "^4.7.0",
"@stoplight/mosaic": "^1.53.2",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-table": "^8.17.3",
"@types/dagre": "^0.7.52",
"@types/node": "^20.14.2",
"astro": "^4.15.4",
"astro-expressive-code": "^0.36.1",
"astro-pagefind": "^1.6.0",
"astro-seo": "^0.8.4",
"axios": "^1.7.7",
"dagre": "^0.8.5",
"diff": "^7.0.0",
"diff2html": "^3.4.48",
"glob": "^10.4.1",
"html-to-image": "^1.11.11",
"lodash.merge": "4.6.2",
"mermaid": "^10.9.1",
"rapidoc": "^9.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactflow": "^11.11.4",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"semver": "7.6.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"unist-util-visit": "^5.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@parcel/watcher": "^2.4.1",
"@types/diff": "^5.2.2",
"@types/lodash.merge": "4.6.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"commander": "^12.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5"
}
}