-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 KB
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
{
"name": "website",
"description": "Personal website written in Astro, Svelte, and UnoCSS with KeyStatic as CMS",
"type": "module",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/kamontat/website",
"repository": {
"type": "git",
"url": "https://github.com/kamontat/website"
},
"author": {
"name": "Kamontat Chantrachirathumrong",
"email": "web@kamontat.net",
"url": "https://kc.in.th",
"twitter": "@kamontatc"
},
"license": "ISC",
"scripts": {
"preinstall": "sh scripts/preinstall.sh",
"prettier": "prettier .",
"eslint": "eslint .",
"check:prettier": "pnpm run prettier --check",
"check:eslint": "pnpm run eslint",
"check:astro": "astro check",
"format:prettier": "pnpm run prettier --write",
"format:eslint": "pnpm run eslint --fix .",
"check": "sh scripts/check.sh",
"format": "sh scripts/format.sh",
"dev": "sh scripts/dev.sh",
"build": "sh scripts/build.sh",
"deploy:stag": "sh scripts/deploy.sh",
"deploy:prod": "sh scripts/deploy.sh --prod"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/markdoc": "0.15.8",
"@astrojs/react": "4.4.0",
"@astrojs/sitemap": "3.6.0",
"@astrojs/svelte": "7.2.0",
"@astrojs/vercel": "8.2.9",
"@kcws/reset.css": "1.38.2",
"@keystatic/astro": "5.0.6",
"@keystatic/core": "0.5.48",
"astro": "5.14.4",
"autoprefixer": "10.4.21",
"cssnano": "7.1.1",
"debug": "4.4.1",
"postcss-preset-env": "10.2.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"svelte": "5.39.12",
"unocss": "66.3.3"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@iconify-json/line-md": "1.2.11",
"@iconify-json/lineicons": "1.2.6",
"@iconify-json/skill-icons": "1.2.3",
"@types/debug": "4.1.12",
"@types/js-yaml": "4.0.9",
"@types/node": "24.0.13",
"@types/react": "latest",
"@types/react-dom": "19.2.0",
"@typescript-eslint/parser": "8.39.0",
"@unocss/eslint-config": "66.5.4",
"@unocss/svelte-scoped": "66.3.3",
"eslint": "9.32.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"js-yaml": "4.1.0",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"sharp": "0.34.3",
"typescript": "5.8.3",
"typescript-eslint": "8.46.2",
"vercel": "44.7.3"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"engines": {
"node": ">=22 <23"
}
}