-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "@convstack/dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "bun run server.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@convstack/service-sdk": "^0.2.0",
"@simplewebauthn/browser": "^13.3.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-router": "^1.168.2",
"@tanstack/react-start": "^1.167.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"isomorphic-dompurify": "^3.7.1",
"lucide-react": "^1.7.0",
"marked": "^17.0.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rrule": "^2.8.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@tailwindcss/vite": "^4.2.2",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.1",
"vitest": "^4.1.0"
}
}