-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.8 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
{
"name": "sosiomap",
"version": "0.1.0",
"private": true,
"author": {
"name": "Alf-Anas",
"url": "https://geoit.dev",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"dev": "next dev -p 3333",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check:types": "tsc --pretty --noEmit",
"check:lint": "eslint . --ext ts --ext tsx --ext js",
"check:format": "prettier --check .",
"prepare": "husky install",
"format": "prettier --write . && echo 'Prettier completed'",
"precommit": "lint-staged",
"lint-staged": "echo 'Lint-staged completed'"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/abeezee": "^5.0.8",
"@fontsource/pacifico": "^5.1.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.1",
"@mui/material": "^5.15.1",
"@mui/material-nextjs": "^5.15.0",
"@mui/x-data-grid": "^6.19.4",
"@mui/x-date-pickers": "^6.19.0",
"@tanstack/react-query": "^5.17.1",
"@turf/turf": "^7.0.0",
"axios": "^1.6.4",
"browser-image-compression": "^2.0.2",
"cookies-next": "^4.1.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"font-gis": "^1.0.5",
"maplibre-gl": "^3.6.2",
"material-icons": "^1.13.12",
"next": "14.0.4",
"next-auth": "^4.24.5",
"next-international": "^1.1.4",
"next-pwa": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"react-easy-crop": "^5.0.7",
"react-slick": "^0.30.2",
"react-social-media-embed": "^2.4.1",
"react-toastify": "^9.1.3",
"react-virtualized": "^9.22.5",
"slick-carousel": "^1.8.1",
"url-metadata": "^4.1.1",
"yet-another-react-lightbox": "^3.15.6"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.17.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@types/react-virtualized": "^9.21.29",
"@types/react-window": "^1.8.8",
"autoprefixer": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}