-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "country-ranks",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"dev": "next dev",
"build": "bun lint && next build",
"start": "next start",
"lint": "eslint .",
"format": "bun run prettier --write src/**/*.{html,js,ts,json,tsx}",
"typecheck": "bun run next typegen && bun run tsc -p ./tsconfig.json"
},
"dependencies": {
"lucide-react": "^0.562.0",
"mapbox-gl": "^3.14.0",
"next": "16.2.3",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-compiler-runtime": "^1.0.0",
"react-dom": "19.2.3",
"typescript": "^5.9.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.2.3",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^24.3.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.34.0",
"eslint-config-next": "16.2.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.6.2"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}