-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.25 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
70
71
72
73
{
"name": "astro-paper",
"version": "4.2.0",
"private": false,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"predev": "astro-i18next generate",
"prebuild": "astro-i18next generate && playwright install --with-deps chromium",
"postbuild": "jampack ./dist",
"deploy": "vercel build && vercel deploy --prebuilt",
"deploy:prod": "vercel build --prod && vercel deploy --prod --prebuilt && git push",
"preview": "astro preview",
"prepare": "husky",
"format:check": "prettier --check . --plugin=prettier-plugin-astro",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"lint": "eslint ."
},
"dependencies": {
"@astrojs/check": "^0.5.9",
"@astrojs/mdx": "^2.2.0",
"@astrojs/rss": "^4.0.5",
"@bowencool/async-utilities": "^2.5.4",
"@giscus/react": "^3.0.0",
"@resvg/resvg-js": "^2.6.0",
"astro": "^4.5.5",
"astro-i18next": "^1.0.0-beta.21",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"react-i18next": "^12.3.1",
"rehype-external-links": "^3.0.0",
"rehype-mermaid": "^2.1.0",
"rehype-shikiji": "^0.10.2",
"satori": "^0.10.13",
"tailwindcss": "^3.4.1",
"tocbot": "^4.25.0",
"typescript": "^5.4.2"
},
"devDependencies": {
"@astrojs/react": "^3.1.0",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/tailwind": "^5.1.0",
"@divriots/jampack": "^0.23.3",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.2.66",
"@typescript-eslint/parser": "^7.2.0",
"astro-eslint-parser": "^0.16.3",
"code-inspector-plugin": "^0.10.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-autolink-headings": "^7.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json,astro}": [
"prettier --write"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]+sha1.8105075ad0aa306138be128c017e9c41e28ecffa"
}