-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.2 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
{
"name": "found-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "react-router dev --host",
"build": "react-router typegen && tsc -b && react-router build",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint src --max-warnings 0",
"lint:prettier": "prettier --check src",
"lint:types": "react-router typegen && tsc --noEmit",
"format": "yarn format:eslint && yarn format:prettier",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "yarn lint:prettier --write",
"start": "react-router-serve ./build/server/index.js"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@react-router/node": "^7.9.1",
"@react-router/serve": "^7.9.1",
"@tailwindcss/vite": "^4.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isbot": "^5.1.30",
"lucide-react": "^0.507.0",
"ogl": "^1.0.11",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-router": "^7.9.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@react-router/dev": "^7.9.1",
"@types/node": "^22.18.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"prettier": "3.6.2",
"tw-animate-css": "^1.3.8",
"typescript": "~5.7.3",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-arm64-gnu": "4.52.0",
"@rollup/rollup-linux-arm64-musl": "4.52.0"
}
}