-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.69 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "next-app-template",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc.json",
"lint:fix": "eslint . --ext .ts,.tsx -c .eslintrc.json --fix",
"format": "prettier --write .",
"format:fix": "prettier .",
"prepare": "husky"
},
"dependencies": {
"@internationalized/date": "^3.6.0",
"@nextui-org/accordion": "^2.0.40",
"@nextui-org/button": "^2.0.38",
"@nextui-org/card": "^2.0.34",
"@nextui-org/chip": "^2.0.33",
"@nextui-org/code": "2.0.33",
"@nextui-org/dropdown": "^2.1.31",
"@nextui-org/image": "^2.0.32",
"@nextui-org/input": "2.2.5",
"@nextui-org/kbd": "2.0.34",
"@nextui-org/link": "2.0.35",
"@nextui-org/listbox": "^2.1.27",
"@nextui-org/modal": "^2.0.41",
"@nextui-org/navbar": "2.0.37",
"@nextui-org/popover": "^2.1.29",
"@nextui-org/react": "^2.4.8",
"@nextui-org/skeleton": "^2.0.32",
"@nextui-org/slider": "^2.2.17",
"@nextui-org/snippet": "2.0.43",
"@nextui-org/spinner": "^2.0.34",
"@nextui-org/switch": "^2.0.34",
"@nextui-org/system": "2.2.6",
"@nextui-org/table": "^2.0.40",
"@nextui-org/theme": "2.2.11",
"@nextui-org/tooltip": "^2.0.41",
"@react-aria/ssr": "3.9.4",
"@react-aria/visually-hidden": "3.8.12",
"@react-leaflet/core": "^2.1.0",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.59.17",
"@tanstack/react-query-devtools": "^5.60.6",
"@turf/turf": "^7.1.0",
"@types/prop-types": "^15.7.13",
"@types/react-highlight-words": "^0.20.0",
"clsx": "2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "~11.1.1",
"geojson": "^0.5.0",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"iconsax-react": "^0.0.8",
"intl-messageformat": "^10.5.0",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-geosearch": "^4.0.0",
"lucide-react": "^0.454.0",
"next": "14.2.10",
"next-themes": "^0.2.1",
"nextui-cli": "^0.3.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-element-to-jsx-string": "^15.0.0",
"react-highlight-words": "^0.20.0",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"react-markdown": "^9.0.1",
"react-pdf": "^9.1.1",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.5",
"tailwind-variants": "0.1.20",
"uuid": "^11.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tailwindcss/typography": "^0.5.15",
"@types/geojson": "^7946.0.14",
"@types/leaflet": "^1.9.14",
"@types/leaflet.markercluster": "^1.5.5",
"@types/node": "20.5.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"autoprefixer": "10.4.19",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"postcss": "8.4.38",
"prettier": "^3.3.3",
"tailwindcss": "3.4.3",
"typescript": "5.0.4",
"url-loader": "^4.1.1"
},
"commitlint": {
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"docs",
"fix"
]
],
"type-empty": [
2,
"never"
]
}
}
}