forked from Bedrock-Ocean-Open-Source/tide-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.34 KB
/
package.json
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
101
102
103
104
105
106
{
"name": "tide-pool",
"description": "BRX Sandbox",
"private": true,
"version": "0.0.1",
"type": "module",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"benchmark": "vitest bench ./__tests__ --run",
"test": "vitest ./__tests__ --run",
"test:watch": "vitest ./__tests__",
"test:coverage": "vitest ./__tests__ --coverage --run",
"test:coverage:watch": "vitest ./__tests__ --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"pages:dev": "wrangler pages dev --compatibility-date=2023-09-21 --port 3000 -- npm start",
"pages:deploy": "npm run build && wrangler pages deploy ./dist",
"deploy": "wrangler pages deploy ./dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@billboard.js/react": "^1.1.1",
"@mapbox/mapbox-gl-draw": "latest",
"@mui/material": "^5.15.18",
"@reduxjs/toolkit": "^1.9.2",
"@tanstack/query-core": "^5.60.6",
"@types/geojson": "^7946.0.14",
"@types/react-map-gl": "^6.1.7",
"@vis.gl/react-google-maps": "latest",
"arc": "^0.1.4",
"arktype": "^2.0.0-rc.24",
"billboard.js": "^3.14.3",
"buffer": "^6.0.3",
"cesium": "^1.126.0",
"flag-icons": "^7.2.3",
"geotiff": "^2.1.3",
"i18n-iso-countries": "^7.13.0",
"immutable": "^4.3.6",
"jotai": "^2.8.3",
"jotai-cache": "^0.5.0",
"jotai-redux": "^0.3.0",
"mapbox-gl": "^3.4.0",
"maplibre-gl": "^5.0.1",
"maplibre-grid": "^1.0.0",
"moment": "^2.29.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "latest",
"react-dom": "latest",
"react-map-gl": "latest",
"react-redux": "^8.0.5",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"redux": "^4.2.1",
"stream-browserify": "^3.0.0",
"typesafe-actions": "^5.1.0",
"vite-plugin-static-copy": "^2.2.0",
"webr": "^0.3.3",
"wrangler": "^3.57.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-interactions": "^8.4.6",
"@storybook/addon-onboarding": "^8.4.6",
"@storybook/blocks": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/react-vite": "^8.4.6",
"@storybook/test": "^8.4.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/lodash": "^4.17.14",
"@types/mapbox__mapbox-gl-draw": "^1.4.8",
"@types/maplibre-gl": "^1.13.2",
"@types/node": "^18.11.18",
"@types/plotly.js": "^2.29.4",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.19",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.11.1",
"jsdom": "^25.0.1",
"postcss": "^8.4.38",
"prettier": "^3.0",
"storybook": "^8.4.6",
"tailwindcss": "^3.4.3",
"typescript": "^4.9.3",
"vite": "^5.0.0",
"vitest": "^2.1.8"
}
}