-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.7 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
76
77
78
79
80
81
82
83
84
{
"name": "barberix-admin-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"test": "jest --bail",
"test:watch": "yarn test --watch",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"generate": "yarn plop --plopfile ./generators/plopfile.js",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ark-ui/react": "^4.1.2",
"@chakra-ui/react": "^3.0.1",
"@emotion/react": "^11.13.3",
"@googlemaps/google-maps-services-js": "^3.3.42",
"@googlemaps/js-api-loader": "^1.16.6",
"@hookform/resolvers": "^3.3.4",
"@next/bundle-analyzer": "15.0.1",
"@react-input/mask": "^1.2.11",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"apexcharts": "^3.48.0",
"axios": "^1.6.8",
"cpf-cnpj-validator": "^1.0.3",
"date-fns": "^3.6.0",
"downshift": "^9.0.1",
"i18next": "^23.11.2",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.5.0",
"i18next-resources-to-backend": "^1.2.1",
"lodash": "^4.17.21",
"lucide-react": "^0.397.0",
"next": "15.0.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"nookies": "^2.5.2",
"plop": "^4.0.1",
"polished": "^4.3.1",
"qrcode.react": "^3.1.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-apexcharts": "^1.4.1",
"react-country-region-selector": "^3.6.1",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-highlight-words": "^0.20.0",
"react-hook-form": "^7.51.2",
"react-i18next": "^14.1.0",
"react-icons": "^5.3.0",
"react-input-mask": "^2.0.4",
"react-loading-overlay-ts": "^2.0.2",
"react-use": "^17.5.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/google.maps": "^3.55.5",
"@types/jest": "^29.5.12",
"@types/node": "20.12.2",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/react-highlight-words": "^0.16.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "5.4.3"
},
"resolutions": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}