-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "status-gis-utah-gov",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check --minimumSeverity=warning",
"ts-check": "astro check",
"format": "prettier \"src/**/*.{astro,js,jsx,ts,json,mjs,md,mdx}\" --write"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.8",
"@astrojs/react": "^4.2.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-popover": "^1.1.5",
"astro": "^5.2.3",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"html-to-text": "^9.0.5",
"lodash.capitalize": "^4.2.1",
"lodash.startcase": "^4.4.0",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-mdxjs": "^3.0.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"unist-util-remove": "^4.0.0",
"yaml": "^2.7.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss"
]
},
"devDependencies": {
"@types/html-to-text": "^9.0.4",
"@types/lodash.capitalize": "^4.2.9",
"@types/lodash.startcase": "^4.4.9",
"@types/node": "^22.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1"
}
}