-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 KB
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
{
"name": "maps-app",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"axios": "0.27.2",
"mapbox-gl": "2.8.2",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@types/mapbox-gl": "2.7.0",
"@types/node": "17.0.31",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"@vitejs/plugin-react": "1.3.0",
"browserslist": "4.20.3",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"typescript": "4.6.3",
"vite": "2.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not chrome < 51",
"not safari < 10",
"not android < 51",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --quiet --fix"
]
}
}