-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
{
"name": "gnosis-bridge-explorer",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"analyze": "ANALYZE=true pnpm build",
"build": "next build",
"export": "next build && next export",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "eslint --fix \"./**/*.{js,jsx,ts,tsx}\"",
"prepare2": "cd .. && husky install",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"typechain": "typechain --target=ethers-v5 ./src/abis/**/*.json --out-dir ./types/typechain/"
},
"dependencies": {
"@babel/traverse": "7.23.2",
"@emotion/is-prop-valid": "1.3.1",
"@ethersproject/abi": "5.6.4",
"@ethersproject/address": "5.6.1",
"@ethersproject/bignumber": "5.6.2",
"@ethersproject/bytes": "5.6.1",
"@ethersproject/contracts": "5.6.2",
"@ethersproject/providers": "5.6.8",
"@safe-global/safe-apps-provider": "0.18.3",
"@safe-global/safe-apps-sdk": "9.1.0",
"@uniswap/sdk-core": "4.0.7",
"@web3-onboard/common": "2.3.3",
"@web3-onboard/core": "2.21.2",
"@web3-onboard/gnosis": "2.3.1",
"@web3-onboard/injected-wallets": "2.10.7",
"@web3-onboard/react": "2.8.13",
"@web3-onboard/walletconnect": "2.6.3",
"date-fns": "2.30.0",
"ethers": "5.6.9",
"framer-motion": "11.15.0",
"graphql-request": "4.0.0",
"graphql-tag": "2.12.6",
"lodash": "4.18.1",
"next": "15.5.15",
"nextjs-google-analytics": "1.2.0",
"nullthrows": "1.1.1",
"react": "18.3.1",
"react-datepicker": "4.8.0",
"react-debounce-input": "3.3.0",
"react-dom": "18.3.1",
"react-error-boundary": "3.1.4",
"react-hot-toast": "2.4.1",
"react-number-format": "5.3.1",
"react-tooltip": "5.21.5",
"recharts": "2.3.2",
"sanitize.css": "13.0.0",
"styled-components": "6.3.8",
"swr": "2.0.0",
"use-debounce": "10.0.0",
"viem": "2.37.8"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.14.0",
"@next/bundle-analyzer": "12.2.1",
"@next/eslint-plugin-next": "16.1.6",
"@typechain/ethers-v5": "10.1.0",
"@types/lodash": "4.14.182",
"@types/react": "18.3.24",
"@types/react-datepicker": "4.4.2",
"@types/react-dom": "18.3.7",
"eslint": "9.14.0",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "17.4.0",
"husky": "7.0.4",
"lint-staged": "12.3.5",
"prettier": "3.6.2",
"typechain": "8.1.0",
"typescript": "5.6.3",
"typescript-eslint": "8.56.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write",
"bash -c tsc"
]
}
}