-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.31 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.31 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
{
"name": "@metamask/test-dapp-mm-pay",
"homepage": "https://metamask.github.io/test-dapp-mm-pay",
"description": "Test Dapp for benchmarking MetaMask Pay and its competitors",
"bugs": {
"url": "https://github.com/MetaMask/test-dapp-mm-pay/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/test-dapp-mm-pay.git"
},
"version": "0.0.6",
"type": "module",
"scripts": {
"add-component": "npx shadcn@latest add",
"build": "tsc && vite build",
"dev": "vite",
"lint:changelog": "auto-changelog validate --prettier",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' '**/*.{ts,tsx}' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@aave/react": "^0.4.0",
"@metamask/delegation-toolkit": "0.11.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@rainbow-me/rainbowkit": "^2.2.8",
"@tanstack/react-query": "^5.84.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.537.0",
"motion": "^12.38.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.33.3",
"wagmi": "^2.16.1"
},
"devDependencies": {
"@metamask/auto-changelog": "^5.0.2",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^18.18.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^26.0.0",
"postcss": "^8.4.38",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.4.12",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "~5.0.4",
"vite": "^5.2.0",
"vite-plugin-node-polyfills": "^0.24.0",
"vitest": "^2.1.8"
},
"packageManager": "yarn@4.9.1",
"engines": {
"node": "^18.18 || >=20"
}
}