-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "property-finder-fe",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^16.13.0"
},
"scripts": {
"dev": "(npx kill-port 3000) && next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"axios": "^0.27.2",
"axios-retry": "^3.6.0",
"bootstrap": "^5.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"next": "12.3.0",
"next-auth": "^4.13.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.38.0",
"react-icons": "^4.7.1",
"react-simple-image-viewer": "^1.2.2",
"react-simple-star-rating": "^5.1.7",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.185",
"@types/node": "18.7.18",
"@types/qs": "^6.9.7",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"typescript": "4.8.3"
}
}