-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 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
{
"name": "website-astro-v2",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "node scripts/copy_changelog.js && node scripts/generate_llms_txt.js",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "run-s build && firebase deploy --only hosting --project firecms-backend",
"generate-llms": "node scripts/generate_llms_txt.js",
"genAPI": "typedoc && node scripts/add_api_frontmatter.js"
},
"dependencies": {
"@astrojs/mdx": "^4.3.9",
"@astrojs/react": "^4.4.0",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/starlight": "^0.36.1",
"@astrojs/starlight-tailwind": "^4.0.1",
"@firebase/analytics": "^0.10.18",
"@firebase/app-check": "^0.11.0",
"@firecms/core": "file:../packages/firecms_core",
"@firecms/data_enhancement": "file:../packages/data_enhancement",
"@firecms/editor": "file:../packages/editor",
"@firecms/firebase": "file:../packages/firebase_firecms",
"@firecms/neat": "^0.4.0",
"@firecms/ui": "file:../packages/ui",
"@fontsource/jetbrains-mono": "^5.2.8",
"@material-design-icons/font": "^0.14.15",
"@rollup/plugin-yaml": "^4.1.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"astro": "^5.17.3",
"astro-expressive-code": "^0.41.3",
"date-fns": "^3.6.0",
"gray-matter": "^4.0.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-responsive-masonry": "^2.7.1",
"react-router-dom": "^6.28.0",
"react-syntax-highlighter": "^16.1.0",
"react-type-animation": "^3.2.0",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.14",
"typeface-rubik": "^1.1.13",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0"
}
}