-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
{
"name": "geeksblabla-community",
"type": "module",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"deploy": "astro build && wrangler deploy",
"sync": "astro sync",
"astro": "astro",
"check": "astro check",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"lint:ci": "eslint \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"prepare": "husky",
"check-all": "pnpm run lint && pnpm run check && pnpm run build"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/netlify": "^5.5.4",
"@astrojs/rss": "^4.0.9",
"@astrolib/seo": "1.0.0-beta.8",
"@astropub/md": "^1.0.0",
"@hookform/resolvers": "^3.9.1",
"@notionhq/client": "^2.2.15",
"@radix-ui/react-slot": "^1.1.0",
"@resvg/resvg-js": "^2.6.2",
"@rive-app/canvas": "^2.21.6",
"astro": "^4.16.13",
"astro-cloudinary": "^1.1.2",
"astro-icon": "^1.1.1",
"astro-pagefind": "^1.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"fuse.js": "^7.0.0",
"lodash.kebabcase": "^4.1.1",
"react-hook-form": "^7.53.2",
"reading-time": "^1.5.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.11.2",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.15",
"@types/github-slugger": "^1.3.0",
"@types/lodash.kebabcase": "^4.1.9",
"@types/react": "^18.3.6",
"@typescript-eslint/parser": "^8.5.0",
"astro-eslint-parser": "^1.0.3",
"eslint": "^9.10.0",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.3",
"tailwindcss-motion": "0.4.1-beta",
"tsx": "^4.19.1",
"typescript-eslint": "^8.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"prettier --write"
]
}
}