-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "geohashviz.com",
"version": "1.0.0",
"private": true,
"homepage": "https://geohashviz.com",
"engines": {
"node": "20.x"
},
"dependencies": {
"@mui/material": "^5.15.15",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.2.24",
"bootstrap": "^5.3.3",
"leaflet": "^1.9.4",
"react": "^18.2.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-router-dom": "^7.9.6",
"typescript": "^5.5.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"deploy": "gh-pages -d dist",
"dev": "vite",
"start": "vite",
"build": "vite build --sourcemap=false",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest --run",
"validate": "npm run format:check && npm run type-check && npm run test:ci && npm run build",
"prepare": "husky"
},
"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": {
"@types/leaflet": "^1.9.9",
"@vitejs/plugin-react": "^4.3.3",
"gh-pages": "^6.1.1",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"vite": "^6.0.5",
"vitest": "^4.0.15"
},
"lint-staged": {
"src/**/*.{ts,tsx,css}": [
"prettier --write"
]
}
}