-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "react-openlayers",
"version": "10.1.0",
"description": "React + OpenLayers",
"author": "Allen Kim",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "storybook dev -p 6006",
"libtest": "npm run build:lib && vite -c src/lib-test/vite.config.ts --open",
"build": "npm run build:lib && npm run build:storybook",
"build:lib": "rm -rf dist && node esbuild.js && ls -al dist",
"build:storybook": "storybook build",
"lint": "eslint src --fix",
"prepublishOnly": "npm run build:lib"
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "https://github.com/allenhwkim/react-openlayers"
},
"homepage": "https://allenhwkim.github.io/react-openlayers/?path=/docs/intro--docs",
"bugs": {
"url": "https://github.com/allenhwkim/react-openlayers/issues"
},
"license": "MIT",
"peerDependencies": {
"ol": "^10.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@storybook/addon-docs": "^8.5.3",
"@storybook/addon-essentials": "^8.3.2",
"@storybook/addon-interactions": "^8.3.2",
"@storybook/addon-links": "^8.3.2",
"@storybook/blocks": "^8.3.2",
"@storybook/react": "^8.3.2",
"@storybook/react-vite": "^8.3.2",
"@storybook/test": "^8.3.2",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.13.4",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"esbuild-node-externals": "^1.18.0",
"eslint": "^9.20.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.11.2",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"msw": "^2.3.0",
"msw-storybook-addon": "^2.0.3",
"prop-types": "^15.8.1",
"remark-gfm": "^4.0.1",
"storybook": "^8.3.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^5.2.0"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}