-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "website",
"version": "0.0.1",
"description": "Portfolio website",
"license": "MIT",
"author": {
"name": "Alexandre Sanchez (alex73630)",
"url": "https://alex73630.xyz"
},
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "oxlint",
"lint:fix": "oxlint --fix-suggestions --report-unused-disable-directives",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "5.0.2",
"@astrojs/sitemap": "3.7.2",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@posthog/react": "^1.8.3",
"@ridemountainpig/svgl-react": "^1.0.16",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@twemoji/api": "^17.0.2",
"@twemoji/parser": "^17.0.1",
"@twemoji/svg": "^15.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "6.1.3",
"astro-react-i18next": "^0.3.4",
"astro-seo": "^1.1.0",
"astro-seo-schema": "^6.0.0",
"i18next": "^26.0.3",
"posthog-js": "^1.364.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.2",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"nano-staged": "^0.9.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"schema-dts": "^2.0.0",
"vite-plugin-static-copy": "^4.0.0"
},
"resolutions": {
"i18next": "^26.0.3",
"react-i18next": "^17.0.2"
},
"nano-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern",
"*.{js,jsx,ts,tsx,mjs,cjs}": "oxlint"
},
"packageManager": "yarn@4.13.0"
}