forked from RevokeCash/revoke.cash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
{
"name": "revoke.cash",
"description": "Protect your Ethereum token balances by revoking allowances and permissions you granted applications in the past.",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true yarn build",
"lint": "prettier --write .",
"postinstall": "husky install"
},
"private": true,
"dependencies": {
"@0xsequence/multicall": "^0.36.13",
"@amplitude/analytics-browser": "^1.5.5",
"@coinbase/wallet-sdk": "^3.5.3",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@gnosis.pm/safe-apps-web3modal": "^15.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@unstoppabledomains/resolution": "^8.3.3",
"@upstash/ratelimit": "^0.1.5",
"@upstash/redis": "^1.15.0",
"@walletconnect/web3-provider": "^1.8.0",
"axios": "^0.26.1",
"axios-retry": "^3.3.1",
"bootstrap": "^4.6.2",
"eth-chains": "^1.0.0",
"ethers": "^5.7.2",
"express-rate-limit": "^6.6.0",
"iron-session": "^6.3.1",
"next": "^12.3.1",
"next-connect": "^0.12.2",
"next-plugin-preact": "^3.0.7",
"next-seo": "^5.8.0",
"p-queue": "^7.3.0",
"preact": "^10.11.2",
"preact-render-to-string": "^5.2.5",
"react": "npm:@preact/[email protected]",
"react-async-hook": "^4.0.0",
"react-bootstrap": "^1.6.6",
"react-dom": "npm:@preact/[email protected]",
"react-spinners": "^0.11.0",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0",
"react-switch": "^6.1.0",
"react-toastify": "^8.2.0",
"request-ip": "^2.2.0",
"sass": "^1.55.0",
"web3modal": "1.9.9"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/request-ip": "^0.0.37",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-bundle-analyzer": "^0.6.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier -u --write"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}