-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "hate-crime-map",
"version": "1.4.1",
"author": "kOaDT",
"license": "UNLICENSED",
"private": false,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "./node_modules/.bin/prettier --check .",
"prettier": "./node_modules/.bin/prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{tsx,ts,js}": "eslint --no-cache --fix",
"*.{tsx,ts,js,css,md}": "prettier --write"
},
"dependencies": {
"@types/d3": "^7.4.3",
"axios": "^1.13.5",
"country-iso-2-to-3": "^1.1.0",
"i18n-iso-countries": "^7.14.0",
"mapbox-gl": "^3.19.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-map-gl": "^8.1.0",
"recharts": "^3.7.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10.0.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5"
}
}