-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.65 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.65 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
{
"name": "@ugrc/raster",
"version": "3.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"check": "tsc -b",
"copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/assets",
"format": "prettier . --write",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "vite",
"start:ci": "vite --host",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:e2e": "playwright test --ui"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@arcgis/core": "~4.33.14",
"@arcgis/lumina": "~4.33.24",
"@arcgis/map-components": "~4.33.24",
"@esri/arcgis-rest-feature-service": "^4.4.1",
"@esri/arcgis-rest-request": "^4.7.3",
"@tanstack/react-query": "^5.90.5",
"@ugrc/eslint-config": "^1.2.3",
"@ugrc/esri-theme-toggle": "^1.1.2",
"@ugrc/utah-design-system": "^1.34.0",
"@ugrc/utilities": "^3.1.1",
"@xstate/react": "^6.0.0",
"firebase": "^12.3.0",
"lucide-react": "^0.554.0",
"react": "^19.2.0",
"react-aria": "^3.44.0",
"react-aria-components": "^1.13.0",
"react-content-loader": "^7.1.1",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"react-stately": "^3.42.0",
"tailwind-merge": "^3.3.1",
"usehooks-ts": "^3.1.1",
"xstate": "^5.23.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@storybook/react-vite": "^10.0.7",
"@types/node": "^24.10.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@ugrc/tailwind-preset": "^1.2.0",
"@ugrc/tsconfigs": "^1.0.3",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.21",
"cpy-cli": "^6.0.0",
"eslint": "^9.38.0",
"happy-dom": "^20.0.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-tailwindcss": "^0.7.1",
"storybook": "^10.0.7",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-package-version": "^1.1.0",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@firebase/util",
"@vaadin/vaadin-usage-statistics",
"esbuild",
"protobufjs"
],
"overrides": {},
"patchedDependencies": {
"@react-aria/disclosure": "patches/@react-aria__disclosure.patch"
}
}
}