-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.81 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": "visualize",
"version": "0.1.1",
"private": false,
"homepage": "https://mozartuss.github.io",
"dependencies": {
"apexcharts": "3.35.0",
"colord": "^2.9.3",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
"leaflet": "^1.9.4",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-cookie-consent": "^9.0.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-i18next": "^14.1.0",
"react-leaflet": "^4.2.1",
"react-responsive": "^9.0.2",
"react-scripts": "5.0.1",
"react-scroll": "^1.9.0",
"react-switch-selector": "^2.2.1",
"react-text-transition": "^3.1.0",
"react-toggle-dark-mode": "^1.1.1",
"typescript": "4.9.5",
"use-local-storage": "^3.0.0",
"web-vitals": "^3.5.2"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "yarn prettier:fix && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,css,sass,scss,less,html,md}\"",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx,css,sass,scss,less,html,md}\"",
"lint": "tsc --noEmit && eslint src/**/*.{ts,tsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/geojson": "^7946.0.14",
"@types/i18next": "^13.0.0",
"@types/leaflet": "^1.9.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/react-i18next": "^8.1.0",
"@types/react-leaflet": "^2.8.3",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"sass": "^1.71.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx,js,json,css,sass,scss,less,html,md}": "yarn prettier:fix",
"src/**/*.{ts,tsx}": "yarn lint --fix"
}
}