-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.28 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
{
"name": "velo.gl",
"author": "Håvard Bjerke",
"license": "MIT",
"keywords": [
"gpx",
"webgl",
"visualization",
"react",
"deck.gl"
],
"release": {
"branches": [
"main"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@deck.gl/geo-layers": "^9.0.36",
"@deck.gl/react": "^9.0.36",
"@loaders.gl/kml": "^4.3.2",
"@math.gl/proj4": "^4.1.0",
"@turf/bbox": "^7.1.0",
"@turf/centroid": "^7.1.0",
"@turf/distance": "^7.1.0",
"@turf/simplify": "^7.1.0",
"converter-locale-cartesian": "^1.1.0",
"lodash": "^4.17.21",
"maplibre-gl": "^4.7.1",
"react-map-gl": "^7.1.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-storysource": "^8.4.5",
"@storybook/blocks": "^8.3.6",
"@storybook/builder-vite": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/test": "^8.3.6",
"@storybook/test-runner": "^0.19.1",
"@types/d3-color": "^3.1.3",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/proj4": "^2.5.5",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.62.0",
"d3-color": "^3.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-yml": "^1.15.0",
"jest-image-snapshot": "^6.4.0",
"playwright": "^1.48.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"semantic-release": "^24.2.0",
"storybook": "^8.3.6"
},
"scripts": {
"build": "rm -rf dist && tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docker": "docker run --rm -it --user node --mount type=bind,source=\"$(pwd)\",target=/app $(docker build -q .)",
"docker:storybook": "npm run docker -- npm run storybook -- --no-open",
"docker:compose:storybook": "docker-compose up storybook",
"docker:compose:test": "docker-compose run test-storybook",
"docker:compose:test:github": "docker-compose run test-storybook-github",
"docker:compose:test:update": "docker-compose run test-storybook-update",
"docker:compose:lint": "docker-compose run sandbox-read-only npm run lint",
"docker:compose:lint:fix": "docker-compose run sandbox npm run lint:fix",
"lint:typecheck": "tsc --project tsconfig.lint.json --noEmit",
"lint": "npm run lint:typecheck && eslint \"**\"",
"lint:fix": "eslint \"**\" --fix",
"test:storybook": "test-storybook"
},
"version": "0.6.0"
}