-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "modern-realestate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^5.5.5",
"framer-motion-hooks": "^1.0.10",
"leaflet": "^1.7.1",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-content-loader": "^6.1.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.2.2",
"react-icons": "^4.3.1",
"react-is": "^18.2.0",
"react-leaflet": "^3.2.2",
"react-placeholder-loading": "^0.5.27",
"react-query": "^3.34.6",
"react-router-dom": "^6.2.1",
"react-scrollbar-size": "^4.0.0",
"styled-components": "^5.3.3",
"use-debounce": "^7.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"vite": "^4.3.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}