forked from RevokeCash/revoke.cash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.51 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
{
"name": "revoke.cash",
"description": "Take back control of your wallet and stay safe by revoking token approvals you granted on Ethereum and over 40 other chains.",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build && next-sitemap",
"trim-sitemap": "sed 's,<urlset.*,<urlset xmlns=\"https://www.sitemaps.org/schemas/sitemap/0.9\" xmlns:xhtml=\"http://www.w3.org/1999/xhtml\">,g' public/sitemap.xml",
"start": "next start",
"analyze": "ANALYZE=true yarn build",
"lint:checksums": "ts-node scripts/lint-checksums.ts && git rm -r --cached -q public/data && git add --all public/data",
"lint": "prettier --write .",
"postinstall": "husky install",
"translations:update": "localazy upload && localazy download && yarn lint",
"translations:update:md": "localazy upload -k localazy.content.keys.json -c localazy.content.json && localazy download -k localazy.content.keys.json -c localazy.content.json",
"test": "cypress run"
},
"private": true,
"dependencies": {
"@0xsequence/multicall": "^0.43.26",
"@amplitude/analytics-browser": "^1.9.3",
"@avvy/client": "3.3.2",
"@coinbase/wallet-sdk": "^3.6.5",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@openzeppelin/contracts": "^4.8.2",
"@revoke.cash/chains": "^5.0.0",
"@tanstack/query-sync-storage-persister": "^4.27.1",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-persist-client": "^4.28.0",
"@tanstack/react-table": "^8.8.5",
"@tippyjs/react": "^4.2.6",
"@unstoppabledomains/resolution": "^9.0.0",
"@upstash/ratelimit": "^0.4.1",
"@upstash/redis": "^1.20.2",
"@vercel/og": "^0.5.4",
"@walletconnect/web3-provider": "^1.8.0",
"axios": "^0.26.1",
"axios-retry": "^3.4.0",
"dexie": "^3.2.3",
"eth-permit": "^0.2.3",
"ethers": "^5.7.2",
"express-rate-limit": "^6.7.0",
"iron-session": "^6.3.1",
"mixpanel-browser": "^2.47.0",
"next": "^13.2.4",
"next-connect": "^0.13.0",
"next-seo": "^6.0.0",
"next-translate": "^2.0.5",
"nprogress": "^0.2.0",
"p-queue": "^6.6.2",
"react": "^18.2.0",
"react-async-hook": "^4.0.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-select": "^5.7.2",
"react-ssr-prepass": "^1.5.0",
"react-sticky-box": "^2.0.4",
"react-toastify": "^9.1.2",
"request-ip": "^3.3.0",
"tailwind-merge": "^1.12.0",
"timeago-react": "^3.0.6",
"use-local-storage": "^3.0.0",
"wagmi": "^0.12.9"
},
"devDependencies": {
"@cypress/grep": "^3.1.5",
"@ethersproject/abstract-provider": "^5.7.0",
"@localazy/cli": "^1.7.1",
"@tailwindcss/typography": "^0.5.9",
"@types/mixpanel-browser": "^2.38.1",
"@types/node": "^18.15.11",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/request-ip": "^0.0.37",
"autoprefixer": "^10.4.14",
"cypress": "^12.9.0",
"dotenv": "^16.0.3",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"next-bundle-analyzer": "^0.6.7",
"next-sitemap": "^3.1.55",
"next-translate-plugin": "^2.0.4",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3",
"walkdir": "^0.4.1"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier -u --write"
}
}