-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "cms-prototype",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "node scripts/replaceMarkdownAssetPaths.js",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --plugin=prettier-plugin-astro --plugin=prettier-plugin-tailwindcss --write .",
"lint": "eslint src"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "4.0.8",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@tailwindcss/vite": "4.0.5",
"astro": "5.2.5",
"tailwindcss": "4.0.5"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"@types/eslint__js": "8.42.3",
"eslint": "9.20.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "3.5.0",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.11",
"sharp": "0.33.5",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0"
}
}