-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.65 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
{
"name": "boilerplate-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npx husky install",
"lint": "npx lint-staged"
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"npx eslint --fix",
"jest --selectProjects lint"
]
},
"jest": {
"projects": [
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/src/**/*.(ts|tsx)"
]
},
{
"displayName": "test",
"testMatch": [
"<rootDir>/src/**/*.test.(ts|tsx)"
]
}
]
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@googlemaps/js-api-loader": "^1.15.1",
"@googlemaps/markerclusterer": "^2.0.15",
"@mui/icons-material": "^5.15.13",
"@react-google-maps/api": "^2.19.2",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/center-of-mass": "^6.5.0",
"@types/googlemaps": "^3.43.3",
"axios": "^1.3.6",
"geojson": "^0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-router-dom": "^6.10.0",
"styled-components": "^5.3.9",
"turf-point": "^2.0.1",
"turf-polygon": "^1.0.3",
"use-places-autocomplete": "^4.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/react-vite": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/geojson": "^7946.0.10",
"@types/google.maps": "^3.53.1",
"@types/node": "^18.15.13",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-runner-eslint": "^2.0.0",
"lint-staged": "^13.2.1",
"prop-types": "^15.8.1",
"storybook": "^7.0.6",
"typescript": "^5.0.2",
"vite": "^4.3.0"
}
}