-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "realestate_typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hookform/resolvers": "^2.8.4",
"@prisma/client": "^3.0.2",
"axios": "^0.21.4",
"compressorjs": "^1.0.7",
"faker": "^5.5.3",
"firebase": "^9.1.3",
"framer-motion": "^4",
"moment": "^2.29.1",
"next": "^12.0.7",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.15.4",
"react-icons": "^4.3.1",
"react-simple-star-rating": "^3.0.0",
"swr": "^1.0.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.2",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.21",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"prisma": "^3.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.7",
"typescript": "4.4.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}