-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "@sofarocean/mapbox-context",
"version": "1.1.2",
"description": "A React wrapper for Mapbox GL JS built for the era of React Context and Hooks",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Sam Kronick <[email protected]>",
"license": "MIT",
"private": false,
"repository": "https://github.com/wavespotter/mapbox-context",
"homepage": "https://github.com/wavespotter/mapbox-context",
"scripts": {
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**' --exec yarn build",
"test": "yarn jest --verbose --coverage",
"test:live": "yarn jest --watchAll",
"prepublishOnly": "yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"nodemonConfig": {
"ext": "js,mjs,json,ts,tsx"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/jest": "^26.0.4",
"@types/mapbox-gl": "^2.7.5",
"@types/react": "^16.9.41",
"@types/react-helmet": "^6.0.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-loader": "^8.1.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"react-is": "^16.13.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@turf/helpers": "^6.1.4",
"fast-deep-equal": "^3.1.3",
"mapbox-gl": "^2.10.0",
"mapbox-gl-controls": "^1.6.4",
"use-deep-compare-effect": "^1.3.1"
},
"peerDependencies": {
"react": "^16.9.0"
}
}