generated from yusixian/template_next-tailwind-ts-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cos-space",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint-md": "lint-md ./src/content/**/*.{md,mdx}",
"lint-md:fix": "lint-md ./src/content/**/*.{md,mdx} --fix",
"lint-staged": "lint-staged",
"change": "git cliff -o CHANGELOG.md",
"prepare": "husky"
},
"dependencies": {
"@astrojs/react": "^4.2.0",
"@astrojs/rss": "^4.0.11",
"@floating-ui/react": "^0.27.2",
"@fontsource/noto-serif-jp": "^5.1.2",
"@fontsource/noto-serif-sc": "^5.1.0",
"@fontsource/poppins": "^5.1.0",
"@iconify-json/fa6-regular": "^1.2.3",
"@iconify-json/fa6-solid": "^1.2.3",
"@iconify-json/gg": "^1.2.2",
"@iconify-json/ri": "^1.2.5",
"@nanostores/react": "^0.8.4",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-slot": "^1.1.1",
"@tailwindcss/vite": "^4.0.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@yeskunall/astro-umami": "0.0.4",
"astro": "^5.2.3",
"astro-icon": "^1.1.5",
"astro-loading-indicator": "^0.7.0",
"astro-tooltips": "^0.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"es-toolkit": "^1.31.0",
"markdown-it": "^14.1.0",
"motion": "^11.15.0",
"nanostores": "^0.11.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-icons": "^5.4.0",
"react-responsive": "^10.0.0",
"reading-time": "^1.5.0",
"sanitize-html": "^2.14.0",
"tailwind-clip-path": "^1.0.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@iconify/react": "^5.2.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.15",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-google-translate": "^0.0.114",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-lint-md": "^1.0.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"vite-plugin-svgr": "^4.3.0"
},
"packageManager": "[email protected]+sha256.9e534e70afef06374f6126b44bda5760947135ce16a30aef1010e965fb7e3e3e",
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json,astro}": [
"prettier --write",
"eslint --fix",
"eslint"
]
}
}