-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "sweet-bnb",
"version": "1.1.0",
"description": "Another airbnb clone I have built againx",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"export": "npm run build && next export",
"start": "next start",
"test": "jest"
},
"author": "Kenny Mark",
"license": "MIT",
"homepage": "https://kennymark.com",
"dependencies": {
"@chakra-ui/icons": "^1.0.7",
"@chakra-ui/react": "^1.1.6",
"@chakra-ui/system": "^1.1.7",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@hookform/error-message": "0.0.4",
"axios": "^0.19.2",
"easy-peasy": "^3.3.1",
"framer-motion": "^3.2.2-rc.1",
"next": "^10.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.4.1",
"react-map-gl": "^6.1.11",
"react-query": "^2.5.7-tsnext.1",
"react-query-devtools": "^1.0.12"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}