-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.6 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.6 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
100
{
"name": "@ugrc/wri",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:shared && tsc -b && vite build",
"build:shared": "npm run clean:shared && tsc -p packages/shared/tsconfig.json",
"build-storybook": "storybook build",
"build:shared:watch": "npm run clean:shared && tsc -p packages/shared/tsconfig.json --watch",
"check": "npm run build:shared && tsc -b",
"clean:shared": "rimraf packages/shared/dist packages/shared/tsconfig.tsbuildinfo",
"copy:arcgis": "cpy \"./node_modules/@arcgis/core/assets/**\" ./public/js/ugrc/assets",
"dev:extractions-test": "npm run build:shared && vite --open /extractions.test.html",
"dev:firebase-emulators": "./scripts/start-emulators.sh",
"dev:vite:stack": "vite",
"dev:vite": "npm run build:shared && vite",
"format": "prettier . --write",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "npm run --prefix functions start:local",
"start:ci": "npm run build:shared && vite --host",
"start:stack": "concurrently 'npm run build:shared:watch' 'cd functions && npm run build:watch:only' 'npm run dev:firebase-emulators' 'wait-on http://127.0.0.1:5001/ut-dnr-dwr-wri-app-at/us-west3/healthCheck && npm run dev:vite:stack'",
"storybook": "storybook dev -p 6006",
"test": "npm run build:shared && vitest"
},
"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.34.8",
"@arcgis/map-components": "^4.34.9",
"@tanstack/react-query": "^5.90.20",
"@terraformer/arcgis": "^2.1.2",
"@ugrc/eslint-config": "^1.2.3",
"@ugrc/esri-theme-toggle": "^1.1.2",
"@ugrc/wri-shared": "file:./packages/shared",
"@ugrc/utah-design-system": "^1.35.0",
"betterknown": "^1.2.0",
"clsx": "^2.1.1",
"firebase": "^12.8.0",
"firebase-functions": "^7.0.5",
"immer": "^11.1.3",
"react": "^19.2.4",
"react-aria": "^3.45.0",
"react-aria-components": "^1.14.0",
"react-content-loader": "^7.1.2",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.0",
"react-stately": "^3.43.0",
"shpjs": "^6.2.0",
"tailwind-merge": "2.6.1",
"tailwind-variants": "0.3.1",
"use-immer": "^0.11.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-docs": "^10.2.8",
"@storybook/addon-links": "^10.2.8",
"@storybook/addon-onboarding": "^10.2.8",
"@storybook/react-vite": "^10.2.8",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/shpjs": "^3.4.7",
"@types/terraformer__arcgis": "^2.0.5",
"@ugrc/tsconfigs": "^1.0.3",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"cpy-cli": "^6.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"firebase-tools": "^15.5.1",
"lucide-react": "^0.563.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.2",
"storybook": "^10.2.8",
"tailwindcss": "^3.4.19",
"tailwindcss-react-aria-components": "^1.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-package-version": "^1.1.0",
"vitest": "^4.0.18",
"wait-on": "^9.0.3"
}
}