forked from reearth/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.25 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
107
108
109
110
111
112
113
114
115
{
"name": "@reearth/core",
"version": "0.0.3",
"author": "Re:Earth contributors <community@reearth.io>",
"license": "Apache-2.0",
"description": "A library that abstracts a map engine as one common API.",
"type": "module",
"main": "dist/core.umd.cjs",
"module": "dist/core.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@reearth/cesium-mvt-imagery-provider": "1.5.4",
"@rot1024/use-transition": "1.0.0",
"@seznam/compose-react-refs": "1.0.6",
"@turf/invariant": "6.5.0",
"@turf/turf": "6.5.0",
"@ungap/event-target": "0.2.4",
"@xstate/react": "3.2.1",
"cesium-dnd": "1.1.0",
"csv-parse": "5.5.2",
"d3": "7.9.0",
"fast-xml-parser": "4.3.2",
"framer-motion": "11.0.27",
"geojson": "0.5.0",
"jotai": "1.12.1",
"js-md5": "0.7.3",
"jsep": "1.3.8",
"jsonpath-plus": "7.2.0",
"jszip": "3.10.1",
"lodash-es": "4.17.21",
"lru-cache": "8.0.4",
"pbf": "3.2.1",
"protomaps": "1.23.1",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-error-boundary": "4.0.11",
"react-nl2br": "1.0.4",
"react-use": "17.5.0",
"resium": "1.17.3",
"suspend-react": "0.1.3",
"tiny-invariant": "1.3.3",
"use-callback-ref": "1.3.2",
"use-custom-compare": "1.4.0",
"uuid": "9.0.1",
"xstate": "4.38.2"
},
"devDependencies": {
"@apollo/client": "3.8.1",
"@chromatic-com/storybook": "^1.3.3",
"@emotion/jest": "11.11.0",
"@storybook/addon-essentials": "8.0.8",
"@storybook/addon-interactions": "8.0.8",
"@storybook/addon-links": "8.0.8",
"@storybook/addon-onboarding": "8.0.8",
"@storybook/blocks": "8.0.8",
"@storybook/react": "8.0.8",
"@storybook/react-vite": "8.0.8",
"@storybook/test": "8.0.8",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@types/d3": "7.4.3",
"@types/geojson": "7946.0.14",
"@types/js-md5": "0.7.2",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.7",
"@types/pbf": "3.0.5",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.6",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@vitejs/plugin-react": "4.2.1",
"cesium": "1.116.0",
"eslint": "8.57.0",
"eslint-config-reearth": "0.3.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.6",
"eslint-plugin-storybook": "0.8.0",
"jsdom": "22.1.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "8.0.8",
"typescript": "5.2.2",
"vite": "5.0.8",
"vite-plugin-cesium": "1.2.22",
"vite-plugin-dts": "3.8.1",
"vite-plugin-svgr": "4.2.0",
"vitest": "1.0.4",
"web-streams-polyfill": "3.2.1"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}