-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "d",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^1.3.2",
"clsx": "^1.2.1",
"formik": "^2.2.9",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"leaflet": "1.7.1",
"leaflet.markercluster": "^1.5.3",
"next": "12.0.0",
"next-i18next": "^13.2.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^12.2.0",
"react-icons": "^4.7.1",
"react-leaflet": "3.0.2",
"react-leaflet-custom-control": "^1.3.3",
"react-leaflet-fullscreen": "^2.0.2",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-scripts": "5.0.1",
"react-select": "^5.7.0",
"sass": "^1.58.1",
"web-vitals": "^2.1.4",
"yup": "^1.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier-fix": "prettier 'src/**/*.(ts|tsx|js|jsx|css|json)' --write",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4"
}
}