-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.79 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
{
"name": "ikuyo",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"biome:check": "biome check --write",
"biome:ci": "biome ci",
"biome:format": "biome format --write",
"build:rsdoctor": "cross-env RSDOCTOR=true rsbuild build",
"build": "rsbuild build",
"dev:rsdoctor": "cross-env RSDOCTOR=true rsbuild dev",
"dev": "rsbuild dev --open",
"dev:backend": "cd backend && php artisan serve --port=8999",
"preview": "rsbuild preview",
"test": "vitest",
"typecheck": "tsc --noEmit",
"artisan": "cd backend && php artisan",
"s:check-static-pages": "php scripts/check-static-pages.php"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emoji-mart/data": "^1.2.1",
"@maptiler/geocoding-control": "^3.0.0",
"@maptiler/sdk": "~4.1.0",
"@radix-ui/colors": "~3.0.0",
"@radix-ui/react-collapsible": "^1.1.20",
"@radix-ui/react-icons": "~1.3.2",
"@radix-ui/react-toast": "~1.2.23",
"@radix-ui/themes": "~3.3.0",
"@sentry/react": "^10.71.0",
"clsx": "~2.1.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-fast-compare": "^3.2.2",
"temporal-polyfill": "^1.0.4",
"url-regex-safe": "^4.0.0",
"wouter": "~3.10.0",
"zustand": "~5.0.15"
},
"devDependencies": {
"@biomejs/biome": "2.5.10",
"@rsbuild/core": "^2.2.0",
"@rsbuild/plugin-react": "^2.1.0",
"@rsbuild/plugin-sass": "^2.0.1",
"@rsdoctor/rspack-plugin": "^1.6.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/url-regex-safe": "^1.0.2",
"@vitest/ui": "^4.1.11",
"cross-env": "^10.1.0",
"dotenv": "17.2.2",
"jsdom": "^30.0.1",
"lefthook": "^2.1.12",
"typescript": "^7.0.2",
"vitest": "4.1.11"
},
"packageManager": "pnpm@10.15.1",
"pnpm": {
"overrides": {
"caniuse-lite": "1.0.30001806",
"esbuild": "0.28.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"es-set-tostringtag": "npm:@nolyfill/es-set-tostringtag@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"side-channel": "npm:@nolyfill/side-channel@^1"
},
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"@types/react",
"@types/react-dom"
]
},
"ignoredBuiltDependencies": [
"core-js"
],
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"esbuild",
"lefthook"
]
},
"browserslist": [
"> 0.4%",
"last 3 versions",
"Firefox ESR",
"not dead"
]
}