This repository was archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.68 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "recy-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prettify": "prettier --write **/*.tsx",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "npm run test --coverage",
"e2e:ui": "yarn playwright test --ui"
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@capacitor/android": "^6.0.0",
"@capacitor/cli": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.1.0",
"@hookform/resolvers": "^3.3.4",
"@iconify/react": "^4.1.1",
"@playwright/test": "^1.46.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@sumsub/websdk": "^2.3.0",
"@sumsub/websdk-react": "^2.3.0",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-table": "^8.16.0",
"@web3modal/wagmi": "^5.1.7",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"commitizen": "^4.3.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"iconify-icon": "^2.1.0",
"lucide-react": "^0.368.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-i18next": "^13.5.0",
"react-router-dom": "^6.26.0",
"recharts": "^2.12.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.13.1",
"wagmi": "^2.12.10",
"zod": "^3.23.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5",
"vitest-fail-on-console": "^0.7.0",
"@testing-library/jest-dom": "^6.4.8",
"@vitejs/plugin-react": "^4.2.1",
"@capacitor/cli": "^6.0.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/browser": "^2.0.5",
"autoprefixer": "^10.4.19",
"commit-msg": "^0.2.3",
"conventional-changelog-atom": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-playwright": "^1.5.4",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"lefthook": "^1.6.15",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.7.0"
},
"engines": {
"node": "^16 || ^20"
}
}