-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
69
{
"private": true,
"sideEffects": false,
"type": "module",
"author": "Aydrian Howard <[email protected]> (https://itsaydrian.com)",
"license": "MIT",
"repository": "github:aydrian/itsaydrian.com",
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"build:icons": "tsx build-icons.ts",
"start": "wrangler dev",
"deploy": "npm run build && wrangler deploy",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint --fix --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "react-router typegen && tsc -b",
"typegen": "wrangler types",
"preview": "npm run build && wrangler dev"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@react-router/cloudflare": "^7.1.5",
"clsx": "^2.1.1",
"isbot": "^5.1.22",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.1.5",
"react-router-hono-server": "^2.8.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250204.0",
"@hono/eslint-config": "^1.0.2",
"@react-router/dev": "^7.1.5",
"@react-router/fs-routes": "^7.1.5",
"@sly-cli/sly": "^1.14.0",
"@tailwindcss/vite": "^4.0.3",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^4.8.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"glob": "^11.0.1",
"node-html-parser": "^7.0.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^3.107.3"
},
"engines": {
"node": ">=20.0.0"
}
}