-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "fusionauth-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --port 3000",
"start": "DEV=true astro build && npm run postbuild && astro preview",
"build": "astro build",
"dev-build": "DEV=true astro build",
"postbuild": "pagefind",
"preview": "astro preview",
"astro": "astro",
"vale": "./node_modules/@vvago/vale/bin/vale",
"spellcheck": "npm run vale src/content src/components",
"lint": "eslint",
"lint-pr": "node ../src/scripts/lint-recent-files.mjs"
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.4.1",
"@astrojs/mdx": "^2.3.1",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/tailwind": "^5.1.0",
"@docsearch/js": "^3.3.3",
"@docsearch/react": "^3.3.3",
"@fusionauth/astro-components": "^2.1.0",
"@tailwindcss/typography": "^0.5.9",
"astro": "^4.7.0",
"astro-compress": "^2.0.8",
"astro-index-pages": "src/integrations/astro-index-pages",
"marked": "^7.0.1",
"mermaid": "^9.1.6",
"pagefind": "^1.1.0",
"puppeteer": "^18.0.2",
"remark-lint": "^10.0.0",
"remark-lint-no-html": "^4.0.0",
"remark-mdx": "^3.0.1",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"semver": "^7.5.4",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@vvago/vale": "^3.7.1",
"@eslint/js": "^9.10.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-mdx": "^3.1.5",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-mdx": "^3.1.5",
"globals": "^15.9.0",
"remark-cli": "^12.0.1",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-toc": "^9.0.0",
"typescript-eslint": "^8.4.0"
}
}