-
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.69 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.69 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/kitchen-sink",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/agrc/kitchen-sink.git"
},
"license": "MIT",
"author": "ugrc developers",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"build:storybook": "storybook build --docs --output-dir ./dist --disable-telemetry",
"check": "tsc -b && prettier . --check",
"firebase:save-state": "firebase emulators:start --import ./data/firebase --export-on-exit --only auth",
"format": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --quiet --fix",
"npm-check": "npx npm-check-updates --color --interactive --format group,repo --workspaces --root",
"storybook": "run-p storybook:*",
"storybook:dev": "storybook dev --port 6006",
"storybook:firebase": "firebase emulators:start --import ./data/firebase --only auth",
"test": "vitest"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"semi": true,
"singleQuote": true,
"tailwindFunctions": [
"clsx",
"tv",
"twJoin",
"twMerge"
]
},
"dependencies": {
"@arcgis/core": "^4.34.8",
"@arcgis/map-components": "^4.34.9",
"lucide-react": "^0.563.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.71.1",
"react-lorem-ipsum": "^1.4.10"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@esri/calcite-components": "^3.3.3",
"@mdx-js/react": "^3.1.1",
"@storybook/addon-docs": "^10.2.3",
"@storybook/addon-links": "^10.2.3",
"@storybook/addon-themes": "^10.2.3",
"@storybook/react-vite": "^10.2.3",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.9.1",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"chokidar-cli": "^3.0.0",
"eslint": "^9.39.2",
"happy-dom": "^20.4.0",
"msw": "^2.12.7",
"msw-storybook-addon": "^2.0.6",
"npm-run-all": "^4.1.5",
"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",
"read-pkg": "^10.0.0",
"release-please": "^17.2.0",
"storybook": "^10.2.3",
"tailwind-merge": "2.6.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "^3.4.18",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"msw": {
"workerDirectory": [
"public"
]
}
}