-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.18 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
{
"name": "workshop-website-template",
"description": "A modern workshop website template built with React Router, TypeScript, and Tailwind CSS",
"private": true,
"version": "1.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.8",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-navigation-menu": "^1.2.10",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.9",
"@react-router/node": "^7.5.3",
"@react-router/serve": "^7.5.3",
"@tailwindcss/vite": "^4.1.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isbot": "^5",
"lucide-react": "^0.507.0",
"ogl": "^1.0.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-router": "^7.5.3",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@react-router/dev": "^7.5.3",
"@types/node": "^22.15.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"tw-animate-css": "^1.2.9",
"typescript": "^5.9.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1"
}
}