-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "taehoonkwon.com",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"prepare": "node --loader ts-node/esm ./scripts/prepare.ts",
"build": "remix build",
"dev": "remix dev --manual",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.2",
"@remix-run/css-bundle": "^2.16.2",
"@remix-run/node": "^2.16.2",
"@remix-run/react": "^2.16.2",
"@remix-run/serve": "^2.16.2",
"@remixicon/react": "^4.6.0",
"@shikijs/rehype": "^3.2.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"front-matter": "^4.0.2",
"globby": "^14.1.0",
"isbot": "^5.1.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@remix-run/dev": "^2.16.2",
"@tailwindcss/postcss": "^4.0.14",
"@types/fs-extra": "^11.0.4",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.22.0",
"eslint-import-resolver-typescript": "^4.2.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"fs-extra": "^11.3.0",
"tailwindcss": "^4.0.14",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": "22.x"
},
"pnpm": {
"onlyBuiltDependencies": [
"@vercel/speed-insights",
"esbuild"
]
}
}