forked from BarnBridge/barnbridge-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.11 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
{
"name": "barnbridge-frontend",
"author": "BarnBridge",
"license": "Apache-2",
"version": "0.1.0",
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"preview": "vite preview",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,mdx,html}'",
"check-lint": "eslint . --ext ts,tsx,js,jsx --report-unused-disable-directives",
"check-format": "prettier --check .",
"check-types": "tsc --pretty --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@gnosis.pm/safe-apps-provider": "^0.15.1",
"@gnosis.pm/safe-apps-react-sdk": "^4.6.2",
"@gnosis.pm/safe-apps-sdk": "4.1.0",
"@popperjs/core": "^2.11.8",
"@rooks/use-debounce": "4.11.2",
"@rooks/use-interval": "4.11.2",
"@rooks/use-window-event-listener": "4.11.2",
"@rooks/use-window-size": "^4.11.2",
"@web3-react/core": "^8.2.0",
"@web3-react/metamask": "^8.2.1",
"@web3-react/types": "^8.2.0",
"@web3-react/walletconnect-v2": "^8.3.7",
"antd": "4.12.3",
"assert": "^2.1.0",
"async-wait-until": "^2.0.12",
"bignumber.js": "^9.1.2",
"classnames": "^2.3.2",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.30.0",
"ethers": "^4.0.49",
"https-browserify": "^1.0.0",
"identicon.js": "2.3.3",
"lodash": "4.17.21",
"nanoid": "3.1.25",
"os-browserify": "^0.3.0",
"outy": "0.1.2",
"query-string": "7.0.1",
"react": "^18.2.0",
"react-device-detect": "1.17.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-popper": "^2.3.0",
"react-provider-tree": "0.1.3",
"react-router-dom": "5.2.0",
"react-use-storage": "0.5.1",
"recharts": "^2.8.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3",
"valirator": "2.2.0",
"web3": "1.5.0",
"web3-eth": "1.5.0",
"web3-eth-contract": "1.5.0",
"web3-utils": "1.5.0",
"wolfy87-eventemitter": "5.2.9"
},
"devDependencies": {
"@types/node": "^20.7.2",
"@types/react": "^17.0.69",
"@types/react-dom": "^17.0.22",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"prettier": "^3.0.0",
"sass": "^1.68.0",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-plugin-node-polyfills": "^0.15.0",
"vite-plugin-svgr": "^4.1.0"
},
"resolutions": {
"@types/react": "^17.0.69"
}
}