This repository was archived by the owner on May 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.97 KB
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": "visitedcountries",
"private": true,
"version": "1.0.21",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "yarn version --patch && tsc && pnpm badges && rm -rf ./dist && vite build",
"preview": "vite preview",
"test": "vitest",
"cypress": "cypress open",
"coverage": "vitest run --coverage",
"badges": "pnpm coverage && jest-coverage-badges --output ./coverage/badges",
"lint": "eslint --fix ./src",
"format": "prettier --write ./src",
"ios": "rm -rf ./ios && npx cap add ios && npx cap open ios",
"android": "rm -rf ./android && npx cap add android && npx cap open android",
"storybook": "storybook dev -p ./static .storybook watch-css ./src 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@capacitor/android": "^4.6.3",
"@capacitor/core": "^4.6.3",
"@capacitor/ios": "^4.6.3",
"@ebay/nice-modal-react": "^1.2.10",
"@reduxjs/toolkit": "^1.9.1",
"@sentry/browser": "^7.30.0",
"@sentry/react": "^7.30.0",
"@sentry/tracing": "^7.30.0",
"@types/i18next-browser-languagedetector": "^3.0.0",
"@types/react-simple-maps": "^3.0.0",
"@types/styled-components": "^5.1.26",
"axios": "^1.3.4",
"firebase": "^9.17.1",
"formik": "^2.2.9",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-i18next": "^12.2.0",
"react-icons": "^4.7.1",
"react-is": "^18.2.0",
"react-laag": "^2.0.5",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"react-simple-maps": "^3.0.0",
"react-toastify": "^9.1.3",
"styled-components": "^5.3.6",
"swr": "^2.1.5",
"uuid": "^9.0.0",
"yup": "^1.0.0"
},
"devDependencies": {
"@capacitor/cli": "^4.7.0",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.28.5",
"cypress": "^12.6.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^29.4.3",
"jest-coverage-badges": "^1.1.2",
"jsdom": "^21.1.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-pwa": "^0.14.4",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.5"
}
}