-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.38 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@sapphic/site",
"version": "4",
"type": "module",
"author": "Sapphic Angels <chloe@sapphic.moe>",
"license": "zlib",
"private": true,
"scripts": {
"build": "astro build --remote",
"check": "astro check",
"dev": "astro dev",
"dev:remote": "astro dev --remote",
"format": "prettier --w --cache .",
"lint": "eslint --fix src/**/*.{ts,tsx,astro}",
"push": "astro db push",
"start": "node ./dist/server/entry.mjs",
"sync": "astro sync",
"test": "eslint .; prettier -c ."
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"tailwindcss",
"@catppuccin/tailwindcss"
]
},
"patchedDependencies": {
"astro": "patches/astro.patch"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"postcss": {
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {},
"autoprefixer": {}
}
},
"repository": "https://github.com/SapphoSys/sapphic.moe",
"dependencies": {
"@astrojs/db": "^0.18.0",
"@astrojs/mdx": "^4.3.7",
"@astrojs/node": "^9.4.5",
"@astrojs/react": "^4.4.0",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/tailwind": "^6.0.2",
"@catppuccin/tailwindcss": "0.1.6",
"@catppuccin/vscode": "^3.18.0",
"@fec/remark-a11y-emoji": "^4.0.2",
"@fontsource/atkinson-hyperlegible": "^5.2.8",
"@fontsource/iosevka": "^5.2.5",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.54",
"@iconify-json/svg-spinners": "^1.2.4",
"@iconify/react": "^6.0.2",
"@napi-rs/image": "^1.11.2",
"@tailwindcss/typography": "^0.5.19",
"astro": "^5.14.3",
"astro-auto-import": "^0.4.5",
"astro-expressive-code": "^0.41.3",
"astro-icon": "^1.1.5",
"astro-loading-indicator": "^0.7.0",
"astro-meta-tags": "^0.4.0",
"astro-seo": "^0.8.4",
"astro-show-tailwindcss-breakpoint": "^1.0.10",
"blurhash": "^2.0.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"howler": "^2.2.4",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.0",
"react-blurhash": "^0.3.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-medium-image-zoom": "^5.4.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"rss-parser": "^3.13.0",
"satori": "^0.18.3",
"satori-html": "^0.3.2",
"sharp": "^0.34.4",
"tailwindcss": "3",
"ts-dedent": "^2.2.0",
"ultrahtml": "^1.6.0",
"vite-plugin-arraybuffer": "^0.1.1"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/eslint": "^9.6.1",
"@types/howler": "^2.2.12",
"@types/react": "^19.2.2",
"@typescript-eslint/parser": "^8.46.0",
"astro-eslint-parser": "^1.2.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.37.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.2",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
}
}