-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.27 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
{
"name": "coshub",
"version": "0.2.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.12.1",
"scripts": {
"dev": "edgeone pages dev",
"dev:frontend": "vite",
"build": "vite build",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cos-nodejs-sdk-v5": "^2.15.4",
"express": "^5.2.1",
"lucide-react": "^1.41.0",
"nuqs": "^2.10.1",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-dropzone": "^15.0.0",
"react-router-dom": "^7.18.3",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@tailwindcss/vite": "^4.3.3",
"@types/express": "^5.0.6",
"@types/node": "^25.9.5",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"eslint": "^9.39.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.5.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.2"
},
"pnpm": {
"overrides": {
"fast-xml-parser": "^5.10.1",
"fast-uri": "^3.1.6",
"qs": "^6.16.0",
"form-data": "^4.0.6",
"tough-cookie@<4.1.3": ">=4.1.3",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"uuid@<11.1.1": ">=11.1.1",
"js-yaml@>=4.0.0 <4.3.1": ">=4.3.1",
"body-parser@>=2.0.0 <2.3.0": ">=2.3.0"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}