-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "multisig-frontend",
"version": "0.0.0",
"homepage": "https://ape-dev-cs.github.io/multisig-gui/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "npm run lint:format && npm run lint:fix ",
"generate-types": "typechain --out-dir 'src/contracts' --target=ethers-v5 'src/abis/**/*.json'",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@formatjs/intl-numberformat": "^7.3.0",
"@juggle/resize-observer": "^3.3.1",
"@react-aria/button": "^3.2.2",
"@react-aria/dialog": "^3.1.4",
"@react-aria/focus": "^3.5.0",
"@react-aria/i18n": "^3.3.4",
"@react-aria/numberfield": "^3.1.1",
"@react-aria/overlays": "^3.7.3",
"@react-aria/tabs": "^3.1.0",
"@react-aria/textfield": "^3.5.0",
"@react-spring/web": "^9.3.1",
"@react-stately/collections": "^3.3.4",
"@react-stately/overlays": "^3.1.3",
"@react-stately/tabs": "^3.0.1",
"@react-types/button": "^3.4.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"buffer": "^6.0.3",
"ethers": "^5.5.2",
"immer": "^9.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-stately": "^3.11.0",
"react-toastify": "^8.1.0",
"styled-components": "^5.3.3",
"zustand": "^3.6.7"
},
"devDependencies": {
"@typechain/ethers-v5": "^8.0.5",
"@types/node": "^17.0.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.18",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"events": "^3.3.0",
"gh-pages": "^3.2.3",
"prettier": "^2.5.1",
"typechain": "^6.0.5",
"typescript": "^4.4.4",
"vite": "^2.7.2"
}
}