-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
{
"name": "@freenow/react-polygon-editor",
"version": "2.0.1",
"description": "A react component for displaying and drawing geo polygons",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "storybook dev -p 9001 -c .storybook",
"lint": "tslint ./src/**/*.{ts,tsx}",
"clean": "rm -rf ./dist ./node_modules",
"build": "tsc",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"prepublishOnly": "rm -rf ./dist && npm test && npm run lint && npm run build",
"build-storybook": "storybook build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/freenowtech/react-polygon-editor.git"
},
"keywords": [
"leaflet",
"react"
],
"author": "m.gharsallah",
"license": "Apache-2.0",
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
},
"peerDependencies": {
"leaflet": "1.x",
"react": ">=18",
"react-dom": ">=18",
"react-leaflet": ">=4",
"styled-components": ">=5"
},
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@mapbox/geojsonhint": "^3.1.0",
"leaflet-path-drag": "^1.8.0-beta.3",
"lodash.flatten": "^4.4.0",
"lodash.isequal": "^4.5.0",
"redux-undo": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@dump247/storybook-state": "^1.6.1",
"@storybook/addon-actions": "^7.0.7",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-mdx-gfm": "^7.0.7",
"@storybook/addon-storysource": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/react-webpack5": "^7.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/leaflet": "^1.9.1",
"@types/lodash.flatten": "^4.4.7",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-leaflet": "^3.0.0",
"@types/redux": "^3.6.0",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.26",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-styled-components": "^7.1.1",
"leaflet": "^1.9.3",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.0",
"storybook": "^7.0.7",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^5.0.4"
}
}