-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "rss.beauty",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.15.2",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "tailwindcss -i src/app.css --content \"src/xsl/**/*\" -m -o public/rss-beauty.css && node scripts/xsl.js",
"build": "astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"postinstall": "simple-git-hooks",
"predev": "npm run prebuild"
},
"dependencies": {
"@tsparticles/engine": "^3.7.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.7.1",
"astro-seo": "^0.8.4",
"copy-to-clipboard": "^3.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@astrojs/cloudflare": "^12.1.0",
"@astrojs/netlify": "^6.0.1",
"@astrojs/node": "^9.0.0",
"@astrojs/react": "^4.1.2",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/vercel": "^8.0.1",
"@eslint-react/eslint-plugin": "^1.23.1",
"@iconify-json/tabler": "^1.2.13",
"@iconify/tailwind": "^1.2.0",
"@prettier/plugin-xml": "^3.4.1",
"@tailus/themer-button": "^0.0.7",
"@tailus/themer-plugins": "^0.1.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"astro": "^5.1.2",
"astro-eslint-parser": "^1.1.0",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"handlebars": "^4.7.8",
"lint-staged": "^15.3.0",
"minify-xml": "^4.5.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"react-compiler-runtime": "19.0.0-beta-b2e8e9c-20241220",
"sharp": "^0.33.5",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.8.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tiny-glob": "^0.2.9"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}