-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 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
{
"name": "today-clothes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"proxy": "http://localhost:5000",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@googlemaps/react-wrapper": "^1.1.42",
"@mui/material": "^6.1.1",
"@mui/x-date-pickers": "^7.18.0",
"@react-google-maps/api": "^2.19.3",
"@reduxjs/toolkit": "^2.2.7",
"@tanstack/react-query": "^5.55.0",
"@tanstack/react-query-devtools": "^5.54.1",
"@types/google.maps": "^3.58.1",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"emotion": "^11.0.0",
"express": "^4.21.0",
"graphql": "^16.9.0",
"http-proxy-middleware": "^3.0.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.441.0",
"next": "14.2.7",
"ra-data-graphql": "^5.1.3",
"react": "^18",
"react-dom": "^18",
"react-google-places-autocomplete": "^4.1.0",
"react-hook-form": "^7.53.0",
"react-redux": "^9.1.2",
"react-slick": "^0.30.2",
"react-toastify": "^10.0.5",
"redux": "^5.0.1",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^2.5.2",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.4.2",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}