-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx,json,css}": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/image": "^0.12.2-beta.0",
"@astrojs/mdx": "^1.0.0-beta.2",
"@astrojs/prefetch": "^0.1.1",
"@astrojs/react": "^2.0.0-beta.0",
"@astrojs/rss": "^2.1.0-beta.0",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^2.1.3",
"@astrojs/vercel": "^3.0.0-beta.1",
"@resvg/resvg-js": "^2.2.0",
"@resvg/resvg-wasm": "^2.2.0",
"@tabler/icons": "^1.119.0",
"@types/js-cookie": "^3.0.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/sharp": "^0.31.1",
"astro": "^2.0.0-beta.3",
"autoprefixer": "^10.4.13",
"htm": "^3.1.1",
"js-cookie": "^3.0.1",
"mime": "^3.0.0",
"mini-svg-data-uri": "^1.4.4",
"react": "^18.2.0",
"react-aria": "^3.22.0",
"react-dom": "^18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-mdx-code-meta": "^2.0.0",
"remark-reading-time": "^2.0.1",
"satori": "^0.1.1",
"satori-html": "^0.3.2",
"sharp": "^0.31.3",
"tailwindcss": "^3.2.4",
"to-ico": "^1.1.5",
"web-vitals": "^3.1.1"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-astro": "^0.7.2"
}
}