-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
92 lines (92 loc) · 2.3 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
{
"name": "react-here-map",
"version": "4.0.0",
"description": "React components for working with Here Maps API",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"author": "Aleem Isiaka<aleemisiaka@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/limistah/react-here-map/issues"
},
"homepage": "https://github.com/limistah/react-here-map#readme",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/react-here-map.esm.js",
"size-limit": [
{
"path": "dist/react-here-map.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-here-map.esm.js",
"limit": "10 KB"
}
],
"resolutions": {
"jackspeak": "2.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.6",
"@size-limit/preset-small-lib": "^11.0.1",
"@storybook/addon-essentials": "^7.6.5",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^7.6.5",
"@storybook/addons": "^7.6.5",
"@storybook/react": "^7.6.5",
"@storybook/react-webpack5": "^7.6.5",
"@types/heremaps": "^3.1.14",
"@types/lodash.merge": "^4.6.9",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"babel-loader": "^9.1.3",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"size-limit": "^11.0.1",
"storybook": "^7.6.5",
"storybook-addon-react-docgen": "^1.2.44",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@limistah/here-map-js": "^4.1.2",
"@storybook/addon-docs": "^7.6.6",
"dot-prop": "^8.0.2",
"lodash.merge": "^4.6.2"
}
}