-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "solvro-docs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^3.6.3",
"@astrojs/starlight": "^0.29.2",
"@astrojs/starlight-tailwind": "^2.0.3",
"@astrojs/tailwind": "^5.1.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.13",
"astro-live-code": "^0.0.4",
"astro-rehype-relative-markdown-links": "^0.16.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"google-auth-library": "^9.14.2",
"googleapis": "^144.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-slug-custom-id": "^2.0.0",
"remark-heading-id": "^1.0.1",
"sharp": "^0.32.5",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/remark-heading-id": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.19.2"
},
"lint-staged": {
"*.{astro,md,mdx,mjs,ts,tsx,js,jsx,json}": [
"prettier --write --ignore-unknown"
]
}
}