-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.20.0"
},
"scripts": {
"dev": "next dev",
"build": "node build.js",
"start": "next start",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"lint:fix": "biome check --write",
"format": "biome format --write",
"knip": "knip",
"prepare": "cd .. && npx husky frontend/.husky || true"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-avatar": "^1.2.0",
"@radix-ui/react-collapsible": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-popover": "^1.1.17",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slider": "^1.4.1",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.1",
"@radix-ui/react-tabs": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.10",
"@segment/analytics-next": "^1.84.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.20",
"@tanstack/react-query": "^5.101.2",
"ag-grid-community": "^36.0.0",
"ag-grid-react": "^36.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv": "^17.4.2",
"fuse.js": "^7.4.2",
"lucide-react": "^1.22.0",
"motion": "^12.42.0",
"next": "^16.2.9",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.80.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"react-textarea-autosize": "^8.5.9",
"rehype-mathjax": "^7.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"use-stick-to-bottom": "^1.1.6",
"winston": "^3.19.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@emnapi/core": "^1.11.1",
"@emnapi/runtime": "^1.11.1",
"@emnapi/wasi-threads": "^1.2.2",
"@playwright/test": "^1.61.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.5.2",
"husky": "^9.1.7",
"knip": "^6.23.0",
"lint-staged": "^17.0.8",
"postcss": "8.5.16",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.3"
},
"overrides": {
"postcss-selector-parser": "6.1.4",
"brace-expansion": "5.0.7",
"js-cookie": "3.0.7",
"picomatch": "4.0.4",
"sharp": "file:./stubs/sharp-0.34.5.tgz",
"glob-parent": "5.1.2",
"minimatch": "10.2.3",
"semver": "7.5.4",
"debug": "4.3.7",
"postcss": "$postcss",
"uuid": "13.0.1",
"lodash": "4.18.0",
"lodash-es": "4.18.0",
"svgo": "4.0.1",
"node-forge": "1.4.0",
"path-to-regexp": "0.1.13",
"@xmldom/xmldom": "0.9.10"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx,css}": "biome check --write --files-ignore-unknown=true"
}
}