-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.46 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.46 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
{
"name": "frontend",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --port 3909",
"dev:up": "bun run up && next dev --port 3909 && bun run down",
"dev:up:build": "bun run up:build && next dev --port 3909 && bun run down",
"build": "next build",
"start": "next start",
"lint": "next lint",
"up": "docker compose -f ../infra/docker-compose.yaml --profile backend up -d",
"up:build": "docker compose -f ../infra/docker-compose.yaml --profile backend up --build -d",
"down": "docker compose -f ../infra/docker-compose.yaml --profile backend down"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-table": "^8.21.2",
"@types/js-cookie": "^3.0.6",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"highlight.js": "^11.11.1",
"js-cookie": "^3.0.5",
"lucide-react": "^0.469.0",
"marked": "^15.0.6",
"marked-highlight": "^2.2.1",
"next": "14.2.32",
"next-themes": "^0.4.4",
"react": "^18",
"react-day-picker": "8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-router-dom": "^7.1.1",
"rehype": "^13.0.2",
"rehype-prism-plus": "^2.0.1",
"sanitize-html": "^2.14.0",
"sonner": "^1.7.1",
"superstruct": "^2.0.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5",
"vaul": "^1.1.2",
"zod": "^4.0.5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.13.0",
"postcss": "^8",
"tailwindcss": "^4.0.0",
"typescript": "^5"
}
}