-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3 KB
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
{
"name": "kestra.io",
"version": "1.0.0",
"private": true,
"description": "Kestra.io website",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"astro": "astro",
"preview": "astro build && wrangler dev",
"deploy": "astro build && wrangler deploy",
"workers:dev": "wrangler dev -- npm run dev",
"workers:dev-build": "npm run build && wrangler dev",
"workers:build": "npm run build",
"workers:deploy": "wrangler deploy",
"workers:deploy-dryrun": "wrangler deploy --dry-run",
"workers:build-deploy": "npm run workers:build && npm run workers:deploy",
"cf-typegen": "wrangler types",
"lint": "oxlint --fix",
"format": "oxfmt . --write && prettier --write **/*.astro",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.8",
"@astrojs/markdown-remark": "^7.1.0",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/vue": "^6.0.1",
"@cloudflare/workers-types": "^4.20260413.1",
"@gtm-support/vue-gtm": "^3.2.0",
"@iconify-json/mdi": "^1.2.3",
"@kestra-io/ui-libs": "^0.0.299",
"@popperjs/core": "^2.11.8",
"@types/aos": "^3.0.7",
"@types/bootstrap": "^5.2.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"@usal/vue": "^1.3.1",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vueuse/core": "^14.2.1",
"astro": "^6.1.5",
"astro-expressive-code": "^0.41.7",
"astro-icon": "^1.1.5",
"astro-loading-indicator": "^0.8.0",
"bootstrap": "^5.3.8",
"countries-list": "^3.3.0",
"dayjs": "^1.11.20",
"eventsource-parser": "^3.0.6",
"expressive-code-collapsible": "^0.1.0",
"jose": "^6.2.2",
"lodash": "^4.18.1",
"lottie-web": "^5.13.0",
"medium-zoom": "^1.1.0",
"mermaid": "^11.14.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"posthog-js": "^1.367.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-vue": "^1.1.6",
"rapidoc": "^9.3.8",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"remark-directive": "^4.0.0",
"remark-link-rewrite": "^1.0.7",
"sass": "^1.99.0",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"slugify": "^1.6.9",
"strip-indent": "^4.1.1",
"svgo": "^4.0.1",
"unist-util-visit": "^5.1.0",
"vanilla-cookieconsent": "^3.1.0",
"vue": "^3.5.32",
"vue-material-design-icons": "^5.3.1",
"vue3-carousel": "^0.17.0",
"wrangler": "^4.81.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1"
},
"engines": {
"node": ">= 14",
"npm": ">= 7"
},
"overrides": {
"astro-loading-indicator": {
"astro": "$astro"
}
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.60.1",
"@rollup/rollup-darwin-x64": "^4.60.1",
"@rollup/rollup-linux-x64-gnu": "^4.60.1"
}
}