-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"name": "cyprien.io",
"version": "4.2.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && pagefind --site dist && cp -r dist/pagefind public/",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"generate:resume": "tsx src/utils/generateResumePDF.ts",
"generate:music-images": "tsx src/utils/generateMusicImages.ts",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^4.3.6",
"@astrojs/rss": "^4.0.12",
"@pagefind/default-ui": "^1.4.0",
"@phosphor-icons/react": "^2.1.10",
"@resvg/resvg-js": "^2.6.2",
"astro": "^5.14.1",
"github-breakout": "github:cyprieng/github-breakout",
"github-slugger": "^2.0.0",
"markdown-it": "^14.1.0",
"pagefind": "^1.4.0",
"sanitize-html": "^2.17.0",
"satori": "^0.18.3",
"tailwindcss": "^4.1.14"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.4.0",
"@astrojs/sitemap": "^3.6.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@types/markdown-it": "^14.1.2",
"@types/react": "^19.2.0",
"@types/sanitize-html": "^2.16.0",
"@types/sharp": "^0.31.1",
"@typescript-eslint/parser": "^8.45.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.37.0",
"eslint-plugin-astro": "^1.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"puppeteer": "^24.23.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sharp": "^0.34.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^6.3.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx,astro}": [
"eslint --fix",
"prettier --write"
]
}
}