-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.69 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@chirpwireless/ui-kit",
"version": "0.280.0",
"type": "module",
"declaration": true,
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/chirpwireless/ui-kit.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "storybook dev -p 6006 --no-open",
"build": "vite build",
"build:css": "sass src/styles/style.scss dist/style.css",
"dev:open": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint . --ext ts,tsx --max-warnings 0 && stylelint \"**/*.scss\"",
"lint:fix": "eslint . --ext ts,tsx --fix --max-warnings 0 --no-ignore",
"lint:scss:fix": "npx stylelint \"**/*.scss\" --fix",
"lint-staged": "lint-staged",
"publish-ui": "npm publish"
},
"peerDependencies": {
"@emotion/cache": "^10.0.29",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mapbox/mapbox-gl-draw": "^1.5.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.3",
"@mui/base": "5.0.0-beta.68",
"@mui/icons-material": "^5.16.14",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.16.14",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@mui/x-tree-view": "^7.15.0",
"@nivo/line": "^0.88.0",
"@tanstack/react-table": "^8.20.6",
"@tanstack/react-virtual": "^3.10.7",
"@turf/bbox": "^7.1.0",
"@turf/centroid": "^7.1.0",
"@turf/circle": "^7.1.0",
"@turf/distance": "^7.1.0",
"echarts": "^5.5.1",
"echarts-for-react": "^3.0.2",
"mapbox-gl": "^3.9.3",
"mapbox-gl-draw-geodesic": "^2.3.1",
"moment": "^2.30.1",
"react": "^19.0.0",
"react-colorful": "^5.6.1",
"react-datepicker": "^7.3.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.33.1",
"react-router-dom": "^6.26.1",
"react-toastify": "^10.0.5",
"sass-embedded": "^1.77.8"
},
"devDependencies": {
"@mui/system": "^5.16.14",
"@rollup/pluginutils": "^5.1.2",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "8.4.7",
"@types/d3-shape": "^3.1.0",
"@types/lodash": "^4.17.13",
"@types/mapbox__mapbox-gl-draw": "^1.4.8",
"@types/mapbox__mapbox-gl-geocoder": "^5.0.0",
"@types/node": "^20.10.5",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-storybook": "^0.11.2",
"glob": "^11.0.0",
"install-peers": "^1.0.4",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"sass": "^1.77.8",
"storybook": "^8.4.7",
"stylelint": "^16.0.2",
"typescript": "^5.7.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^4.2.1",
"vite-plugin-svgr": "^4.2.0"
},
"sideEffects": [
"**/*.css"
],
"dependencies": {}
}