-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
94 lines (94 loc) · 3.27 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
85
86
87
88
89
90
91
92
93
94
{
"name": "pets-love",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "serve -s dist -p 3000",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"prettier:write": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json,html}'",
"format": "yarn run lint:fix && yarn run prettier:write"
},
"dependencies": {
"@react-google-maps/api": "^2.19.2",
"@types/lodash": "^4.17.0",
"@types/qrcode": "^1.5.4",
"@types/react-big-calendar": "^1.8.9",
"@types/react-date-range": "^1.4.9",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.15",
"axios": "^1.5.0",
"date-fns": "^3.6.0",
"dotenv": "^16.3.1",
"formik": "^2.4.5",
"framer-motion": "^10.16.4",
"google-maps-react": "^2.0.6",
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.1",
"lodash": "^4.17.21",
"mobx": "^6.10.2",
"mobx-react": "^9.0.1",
"moment": "^2.30.1",
"postcss": "^8.4.29",
"qrcode": "^1.5.3",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-big-calendar": "^1.12.1",
"react-date-range": "^2.0.1",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "^14.1.0",
"react-image-file-resizer": "^0.4.8",
"react-markdown": "8.0.6",
"react-modal": "^3.16.1",
"react-phone-input-2": "^2.15.1",
"react-places-autocomplete": "^7.3.0",
"react-qr-code": "^2.0.12",
"react-query": "^3.39.3",
"react-router-dom": "^6.15.0",
"react-select": "^5.7.5",
"react-toastify": "^9.1.3",
"remark-gfm": "^4.0.0",
"serve": "^14.2.1",
"swiper": "^10.3.0",
"tailwindcss": "^3.3.3",
"vite-plugin-svgr": "^3.2.0",
"yup": "^1.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/i18next": "^13.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-i18next": "^8.1.0",
"@types/react-modal": "^3.16.0",
"@types/react-places-autocomplete": "^7.2.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"cypress": "^13.1.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.3",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vitest": "^1.3.1"
}
}