-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
{
"name": "weather-shnk-next",
"version": "14.15.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint .",
"analyze": "cross-env ANALYZE=true next build",
"git:patch": "npm run lint && npm --no-git-tag-version --no-commit-hooks version patch && git add -A && git commit -m",
"git:minor": "npm run lint && npm --no-git-tag-version --no-commit-hooks version minor && git add -A && git commit -m",
"git:major": "npm run lint && npm --no-git-tag-version --no-commit-hooks version major && git add -A && git commit -m"
},
"dependencies": {
"@mantine/hooks": "^7.4.1",
"browserslist": "latest",
"dayjs": "^1.10.4",
"eslint-config-next": "^13.4.19",
"framer-motion": "^10.10.0",
"jotai": "^2.4.2",
"leaflet": "^1.9.4",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"next13-progressbar": "^1.2.1",
"pigeon-maps": "^0.21.4",
"react": "^18.2.0",
"react-aria-components": "^1.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"sharp": "^0.32.6",
"tailwindcss-react-aria-components": "^1.1.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.7",
"@next/eslint-plugin-next": "^12.0.7",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"next-images": "^1.7.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3"
}
}