-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "@city/react-2gis",
"version": "3.1.0",
"description": "React wrapper for 2GIS WebGL maps",
"main": "dist/index.js",
"scripts": {
"build": "rollup --config rollup.config.ts",
"start": "rollup --config rollup.config.ts -w",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"tsc": "tsc --project tsconfig.json",
"stylelint": "stylelint './src/**/*.{scss,css}'",
"stylelint:fix": "stylelint './src/**/*.{scss,css}' --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@2gis/mapgl": "^1.41.1",
"@2gis/mapgl-clusterer": "2.5.0",
"@babel/core": "^7.23.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.61.1",
"rollup-plugin-typescript2": "^0.31.1",
"sass": "^1.45.0",
"sass-loader": "^10.2.0",
"stylelint": "13",
"stylelint-config-css-modules": "2.2",
"stylelint-config-idiomatic-css": "1.1",
"stylelint-config-prettier": "8.0",
"stylelint-config-recommended": "5.0",
"stylelint-config-recommended-scss": "4.2",
"stylelint-order": "4.1",
"stylelint-scss": "3.19",
"tslib": "^2.3.1",
"typescript": "4.4.4"
},
"peerDependencies": {
"@2gis/mapgl": "^1.41.1",
"@2gis/mapgl-clusterer": "2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"dist"
],
"dependencies": {
"@turf/turf": "^6.5.0"
}
}