-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.27 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
{
"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": "[email protected]",
"pnpm": {
"default": "9.14.2"
},
"engines": {
"node": ">=23"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/partytown": "^2.1.2",
"@astrojs/react": "^3.6.3",
"@astrojs/sitemap": "^3.2.1",
"@astrolib/analytics": "^0.6.1",
"@floating-ui/react": "^0.26.28",
"@playform/compress": "^0.1.6",
"@tuplo/numberfmt": "^1.11.0",
"astro": "^4.16.16",
"astro-font": "^0.1.81",
"astro-imagetools": "^0.9.0",
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"motion": "^11.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-multi-carousel": "^2.8.5",
"react-slick": "^0.30.2",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"sass": "^1.81.0",
"sharp": "0.33.5",
"short-unique-id": "^5.2.0",
"slick-carousel": "^1.8.1",
"typescript": "^5.6.3",
"use-breakpoint": "^4.0.5",
"use-sync-external-store": "^1.2.2",
"user-agent-data-types": "^0.4.2",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@eslint/js": "^9.15.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-slick": "^0.23.13",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.15.0"
}
}