This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.8 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
{
"name": "garbage_map",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn install && vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"clsx": "1.2.1",
"leaflet": "1.9.2",
"leaflet.markercluster": "1.5.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-leaflet": "3.2.5"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@testing-library/jest-dom": "5.16.5",
"@types/jest": "27.5.2",
"@types/leaflet": "1.9.0",
"@types/leaflet.markercluster": "1.5.1",
"@types/react": "17.0.52",
"@types/react-dom": "17.0.18",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.13",
"babel-jest": "27.5.1",
"eslint": "8.25.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"postcss": "8.4.19",
"prettier": "2.7.1",
"tailwindcss": "2.2.19",
"typescript": "4.8.4",
"vite": "2.8.6",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-svgr": "0.6.0",
"vite-react-jsx": "1.1.2",
"vite-tsconfig-paths": "3.5.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}