-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "website",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro preview",
"build": "astro build",
"typecheck": "tsc --noEmit",
"typecheck:w": "npm run typecheck -- --watch",
"check": "astro check",
"check:w": "npm run check -- --watch",
"format": "prettier -w src config",
"format:check": "prettier --check src/**/*.{js,ts,tsx,astro} config/**/*.ts",
"lint": "eslint src config",
"ci:setup-vercel": "vercel pull --yes --environment production --token \"$VERCEL_TOKEN\"",
"ci:deploy": "vercel deploy --prebuilt --prod --token \"$VERCEL_TOKEN\""
},
"dependencies": {
"@astrojs/mdx": "4.0.3",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.4",
"@astrojs/vercel": "8.0.1",
"@fontsource-variable/inter": "5.1.0",
"@vercel/speed-insights": "1.1.0",
"astro": "5.1.1",
"astro-icon": "1.1.5",
"clsx": "2.1.1",
"reading-time": "1.5.0",
"rehype-autolink-headings": "7.1.0",
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"shiki": "1.24.4",
"tailwind-merge": "2.6.0",
"ts-pattern": "5.6.0"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@eslint/js": "9.17.0",
"@types/eslint__js": "8.42.3",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.3.1",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2",
"vercel": "39.2.2"
}
}