-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "geo-meta-map",
"version": "0.3.0",
"private": true,
"homepage": "https://digitalsquid.github.io/geo-map",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.15",
"next": "15.2.4",
"react": "^19.0.0",
"react-country-flag": "^3.1.0",
"react-dom": "^19.0.0",
"react-simple-maps": "^3.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^22.13.13",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/react-simple-maps": "^3.0.6",
"eslint": "^9.23.0",
"eslint-config-next": "15.2.4",
"gh-pages": "^6.3.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.15",
"typescript": "^5.8.2"
},
"overrides": {
"react-simple-maps": {
"react": "^16.8.0 || 17.x || 18.x || 19.x",
"react-dom": "^16.8.0 || 17.x || 18.x || 19.x"
},
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4"
}
}