-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "defguard-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"prettier:fix": "prettier --write src",
"eslint:fix": "eslint src/**/*.{ts,tsx,astro} --fix",
"fix": "pnpm prettier:fix && pnpm eslint:fix",
"prettier:lint": "prettier --check src",
"eslint:lint": "eslint src/**/*.{ts,tsx,astro} --max-warnings 0",
"lint": "pnpm prettier:lint && pnpm tsc && pnpm eslint:lint && pnpm astro check"
},
"packageManager": "pnpm@9.14.2",
"pnpm": {
"default": "9.14.2"
},
"engines": {
"node": ">=23"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/partytown": "^2.1.4",
"@astrojs/react": "^3.6.3",
"@astrojs/sitemap": "^3.4.1",
"@astrolib/analytics": "^0.6.1",
"@floating-ui/react": "^0.26.28",
"@playform/compress": "^0.1.9",
"@tuplo/numberfmt": "^1.11.0",
"astro": "^4.16.18",
"astro-blog": "^0.2.3",
"astro-font": "^0.1.81",
"astro-imagetools": "^0.9.0",
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"motion": "^11.18.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"react-multi-carousel": "^2.8.6",
"react-slick": "^0.30.3",
"rehype-external-links": "^2.1.0",
"rehype-raw": "^7.0.0",
"sass": "^1.89.2",
"sharp": "0.34.0",
"shiki": "^3.8.1",
"short-unique-id": "^5.3.2",
"slick-carousel": "^1.8.1",
"typescript": "^5.8.3",
"unified": "^11.0.5",
"use-breakpoint": "^4.0.6",
"use-sync-external-store": "^1.5.0",
"user-agent-data-types": "^0.4.2",
"zod": "^3.25.64",
"zustand": "^5.0.5"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@eslint/js": "^9.28.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-slick": "^0.23.13",
"eslint": "^9.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "~5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.34.0"
}
}