-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.99 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
{
"name": "cruddy-forms-demo",
"description": "CruddyForms: HTML form generation and validation from Typebox schemas.",
"version": "0.1.0",
"homepage": "https://cruddyforms.com",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"build:cloudflare": "astro build --config astro.config.cloudflare.mjs",
"preview:cloudflare": "wrangler pages dev ./dist",
"deploy:cloudflare": "pnpm run build:cloudflare && wrangler pages deploy ./dist",
"deploy:production": "pnpm run build:cloudflare && wrangler pages deploy ./dist --project-name cruddy-forms-demo --branch main",
"deploy:staging": "pnpm run build:cloudflare && wrangler pages deploy ./dist --project-name cruddy-forms-demo --branch staging",
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^11.0.4",
"@astrojs/node": "^8.2.3",
"astro": "^4.14.2",
"cruddy-forms": "^0.1.6",
"prismjs": "^1.29.0",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@astrojs/mdx": "^1.1.0",
"@astrojs/partytown": "^2.0.0",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "5.0.0",
"@astrolib/seo": "1.0.0-beta.5",
"@fontsource-variable/inter": "^5.0.8",
"@iconify-json/flat-color-icons": "^1.1.7",
"@iconify-json/tabler": "^1.1.91",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"astro-compress": "^2.3.1",
"astro-icon": "^1.1.1",
"eslint": "^8.49.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"js-yaml": "^4.1.0",
"limax": "4.1.0",
"lodash.merge": "^4.6.2",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unpic": "^3.18.0",
"wrangler": "^3.72.2"
},
"engines": {
"node": ">=18.14.1"
}
}