-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 901 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 901 Bytes
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
{
"name": "dev-blog",
"type": "module",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"compress": "node scripts/convert-to-avif.js",
"astro": "astro",
"commit": "cz",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^4.2.3",
"@astrojs/react": "^4.2.4",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.0",
"astro": "^5.5.6",
"primeicons": "^7.0.0",
"primereact": "^10.9.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.34.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}