-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.47 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
{
"name": "ectotrees",
"private": true,
"version": "1.27.1",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "vite",
"host": "concurrently --names \"dash,alt1\" --prefix-colors \"cyan,yellow\" \"vite --host\" \"npm --prefix alt1-plugin run watch\"",
"build": "tsc -b && vite build && npm --prefix alt1-plugin run build",
"lint": "eslint .",
"preview": "vite preview",
"server": "tsx server/index.ts",
"server:check": "tsc --noEmit -p server/tsconfig.json",
"typecheck": "tsc --noEmit && tsc --noEmit -p server/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"preversion": "node scripts/update-docs.mjs",
"postversion": "git push --follow-tags",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"og:generate": "node scripts/generate-og-image.mjs",
"fonts:woff2": "node scripts/convert-fonts.mjs"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@ncdai/react-wheel-picker": "^1.2.0",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-switch": "^1.3.3",
"@radix-ui/react-tooltip": "^1.2.12",
"@types/leaflet": "^1.9.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"gsap": "^3.15.0",
"leaflet": "^1.9.4",
"lucide-react": "^1.24.0",
"obscenity": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-resizable-panels": "^4.12.2",
"tailwind-merge": "^3.6.0",
"tsx": "^4.23.1",
"ws": "^8.21.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@storybook/react": "^10.5.0",
"@storybook/react-vite": "^10.5.0",
"@tailwindcss/vite": "^4.3.2",
"@types/express": "^5.0.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-storybook": "^10.5.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"storybook": "^10.5.0",
"tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"wawoff2": "^2.0.1"
}
}