-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "pub.seven.intro",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro check --watch & astro dev",
"start": "astro dev",
"prebuild": "./getCommitID.sh",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,svelte,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,svelte,astro}\""
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^11.2.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"astro": "^4.16.16",
"astro-expressive-code": "^0.37.0",
"astro-google-analytics": "^1.0.3",
"astro-icon": "^1.1.0",
"clsx": "^2.1.0",
"mdast-util-to-string": "^4.0.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"prettier": "^3.2.5",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.8"
}
}