-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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
{
"name": "barrenechea-website",
"version": "1.0.0",
"author": "Sebastian Barrenechea (https://github.com/barrenechea)",
"license": "ISC",
"type": "module",
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "astro check",
"format": "prettier --log-level warn --write .",
"prepare": "husky",
"i18n:generate": "npm run format && node --loader ts-node/esm/transpile-only --no-warnings tools/translateContent.ts en && npm run format && node --loader ts-node/esm/transpile-only --no-warnings tools/translateContent.ts && npm run format"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,astro}": [
"eslint .",
"astro check",
"astro lint"
]
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.6",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.5",
"@astrojs/partytown": "^2.1.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@fontsource/work-sans": "^5.1.1",
"@iconify-icons/circle-flags": "^1.2.41",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.16",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"astro": "^5.1.5",
"astro-eslint-parser": "^1.1.0",
"astro-og-canvas": "^0.5.6",
"astro-robots-txt": "^1.0.0",
"eslint": "9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"github-fork-ribbon-css": "^0.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"openai": "^4.78.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2"
},
"packageManager": "npm@11.0.0",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"typescript-eslint": "^8.19.1"
}
}