forked from firecmsco/firecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.04 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
{
"name": "website",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"dev": "yarn copyChangelog && docusaurus start",
"build": "NODE_OPTIONS=--max-old-space-size=24048 && yarn copyChangelog && docusaurus build",
"preview": "yarn build && docusaurus serve",
"genAPI": "typedoc --plugin typedoc-plugin-markdown --hideGenerator --hidePageHeader --hideInPageTOC --out docs/api",
"copyChangelog": "echo '---' > ./docs/CHANGELOG.md && echo 'id: changelog' >> ./docs/CHANGELOG.md && echo 'title: Changelog' >> ./docs/CHANGELOG.md && echo '---' >> ./docs/CHANGELOG.md && cat ../CHANGELOG.md >> ./docs/CHANGELOG.md ",
"swizzle": "docusaurus swizzle --danger",
"deploy": "yarn build && firebase deploy --only hosting",
"serve": "docusaurus serve",
"clear": "docusaurus clear"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@docsearch/js": "3.3.3",
"@docusaurus/core": "^3.1.0",
"@docusaurus/plugin-google-gtag": "^3.1.0",
"@docusaurus/plugin-sitemap": "^3.1.0",
"@docusaurus/preset-classic": "^3.1.0",
"@docusaurus/theme-search-algolia": "^3.1.0",
"@firecms/collection_editor": "link:../packages/collection_editor",
"@firecms/core": "link:../packages/firecms_core",
"@firecms/data_import_export": "link:../packages/data_import_export",
"@firecms/firebase": "link:../packages/firebase_firecms",
"@firecms/neat": "0.1.5",
"@firecms/schema_inference": "link:../packages/schema_inference",
"@firecms/ui": "link:../packages/ui",
"@mdx-js/react": "^3.0.0",
"aos": "^2.3.4",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"postprocessing": "^6.30.1",
"prism-react-renderer": "^2.1.0",
"raw-loader": "^4.0.2",
"react": "link:../../node_modules/react",
"react-dom": "link:../../node_modules/react-dom",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.5",
"react-type-animation": "^2.1.2",
"sass": "^1.60.0",
"tailwindcss": "^3.3.0",
"three": "^0.149.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"@tsconfig/docusaurus": "^1.0.7",
"@types/react": "^18.2.33",
"@types/react-helmet": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"docusaurus-plugin-sass": "^0.2.5",
"docusaurus-plugin-typedoc": "^0.21.0",
"docusaurus-tailwindcss-loader": "file:plugins/docusaurus-tailwindcss-loader",
"esbuild-loader": "^4.0.2",
"firecms": "link:../packages/firecms",
"fontaine": "^0.4.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.1.0",
"postcss-preset-env": "^8.2.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2"
}
}