-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathpackage.json
106 lines (106 loc) · 3.44 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@hop-protocol/frontend",
"version": "0.0.33",
"description": "Hop Protocol Frontend",
"author": "Authereum Labs, Inc.",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rm -rf node_modules build ./tsconfig.tsbuildinfo",
"start": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` vite",
"dev": "pnpm start",
"lint": "eslint . --fix",
"build": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` tsc && vite build && echo '{\"type\": \"module\", \"imports\": { \"#*\": \"./*\" }}' > dist/package.json",
"version": "pnpm version",
"preview": "vite preview",
"deploy": "pnpm dlx --yes netlify-cli deploy --prod",
"deploy:ipfs": "pnpm dlx --yes ipfs-deploy -p infura build --no-open --no-clipboard",
"deploy:local": "git stash && yarn build && yarn deploy"
},
"dependencies": {
"@arbitrum/sdk": "4.0.3",
"@consensys/linea-sdk": "0.1.6",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.11.0",
"@eth-optimism/sdk": "3.3.2",
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@gnosis.pm/safe-apps-react-sdk": "4.6.2",
"@gnosis.pm/safe-apps-sdk": "7.8.0",
"@hop-protocol/sdk": "workspace:*",
"@maticnetwork/maticjs": "3.5.0",
"@maticnetwork/maticjs-ethers": "1.0.3",
"@maticnetwork/maticjs-pos-zkevm": "npm:@maticnetwork/[email protected]",
"@mui/icons-material": "5.15.6",
"@mui/lab": "5.0.0-alpha.162",
"@mui/material": "5.15.6",
"@mui/styled-engine-sc": "6.0.0-alpha.13",
"@mui/styles": "5.15.6",
"@mui/system": "5.15.6",
"@web3-react/coinbase-wallet": "8.2.3",
"@web3-react/core": "8.2.3",
"@web3-react/gnosis-safe": "8.2.4",
"@web3-react/metamask": "8.2.4",
"@web3-react/types": "8.2.3",
"@web3-react/walletconnect-v2": "8.5.1",
"clsx": "1.2.1",
"copy-to-clipboard": "3.3.2",
"ethers": "5.7.2",
"eventemitter3": "5.0.1",
"events": "3.3.0",
"fast-memoize": "2.5.2",
"keccak256": "1.0.3",
"lodash": "4.17.21",
"luxon": "3.4.4",
"merkletreejs": "0.3.11",
"numbro": "2.3.6",
"pluralize": "8.0.0",
"qs": "6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "2.0.10",
"react-google-recaptcha": "2.1.0",
"react-jazzicon": "1.0.4",
"react-markdown": "8.0.3",
"react-query": "3.39.1",
"react-router-dom": "6.21.2",
"react-social-login-buttons": "3.6.1",
"react-table": "7.8.0",
"react-transition-group": "4.4.5",
"remark-gfm": "3.0.1",
"styled-components": "6.1.8",
"styled-system": "5.1.5",
"use-async-memo": "1.2.4",
"usehooks-ts": "2.9.1",
"vite-plugin-svgr": "4.2.0",
"web-vitals": "0.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "5.17.0",
"@types/lodash": "4.14.202",
"@types/luxon": "3.4.2",
"@types/pluralize": "0.0.33",
"@types/qs": "6.9.11",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.19",
"@types/react-google-recaptcha": "2.1.8",
"@types/react-table": "7.7.19",
"@types/react-transition-group": "4.4.10",
"@types/styled-components": "5.1.34",
"@types/styled-system": "5.1.22",
"@vitejs/plugin-react": "4.2.1",
"buffer": "6.0.3",
"dotenv": "16.4.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"vite": "5.0.13"
},
"imports": {
"#*": {
"import": "./src/*",
"require": "./src/*"
}
}
}