-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "react-app",
"version": "0.1.0",
"private": true,
"description": "...",
"scripts": {
"dev": "vite dev",
"build": "pnpm build:dev",
"build:dev": "vite build --mode development",
"build:production": "vite build --mode production",
"check": "pnpm lint && pnpm typecheck",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"generateStoryMap": "yarn makeStoryMap '**/*.stories.tsx' --output ./src/__stories/__storyBrowser/STORY_MAP.ts"
},
"browserslist": ">0.75%, not ie 11, not UCAndroid >0, not OperaMini all",
"dependencies": {
"@deck.gl/core": "^8.4.13",
"@deck.gl/layers": "^8.4.13",
"@deck.gl/react": "^8.4.13",
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.3.0",
"history": "^5.0.0",
"mapbox-gl": "^2.9.2",
"mobx": "^6.10.2",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "6.1.12",
"story-browser": "^2.3.2",
"xroute": "^6.2.1"
},
"devDependencies": {
"@danmarshall/deckgl-typings": "~4.9.25",
"@types/geojson": "^7946.0.7",
"@types/node": "^18.0.6",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^2.0.0",
"eslint-config-nfour": "^3.5.0",
"typescript": "^4.7.4",
"vite": "^3.0.4"
}
}