forked from RevokeCash/revoke.cash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.39 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
{
"name": "revoke.cash",
"description": "Take back control of your wallet and stay safe by revoking token approvals you granted on Ethereum and over 70 other networks.",
"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": "tsx scripts/lint-checksums.ts && git rm -r --cached -q data && git add --all 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",
"exploits:update": "tsx scripts/update-exploits.ts ../approval-exploit-list ../whois"
},
"private": true,
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@revoke.cash/chains": "^29.0.0",
"@tanstack/query-sync-storage-persister": "^5.13.4",
"@tanstack/react-query": "^5.13.4",
"@tanstack/react-query-persist-client": "^5.13.4",
"@tanstack/react-table": "8.8.5",
"@tippyjs/react": "^4.2.6",
"@upstash/ratelimit": "^1.0.0",
"@upstash/redis": "^1.25.1",
"@vercel/speed-insights": "^1.0.1",
"dexie": "^3.2.4",
"holy-loader": "^2.0.0",
"iron-session": "^8.0.1",
"ky": "^1.1.3",
"mixpanel-browser": "^2.48.1",
"next": "^14.0.4",
"next-seo": "^6.4.0",
"next-translate": "^2.6.2",
"p-queue": "^8.0.0",
"rate-limiter-flexible": "^3.0.6",
"react": "^18.2.0",
"react-async-hook": "^4.0.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.2.0",
"react-lite-youtube-embed": "^2.4.0",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"react-ssr-prepass": "^1.5.0",
"react-sticky-box": "^2.0.5",
"react-toastify": "^9.1.3",
"reading-time-estimator": "^1.9.2",
"remark-directive": "^3.0.0",
"remark-directive-rehype": "^0.4.2",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.0",
"tailwind-merge": "^2.1.0",
"timeago-react": "^3.0.6",
"timeago.js": "^4.0.2",
"use-local-storage": "^3.0.0",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@cypress/grep": "^4.0.1",
"@localazy/cli": "^1.7.5",
"@tailwindcss/typography": "^0.5.10",
"@types/mixpanel-browser": "^2.47.5",
"@types/node": "^18.19.3",
"@types/nprogress": "^0.2.3",
"@types/react": "18.2.42",
"@types/react-dom": "^18.2.17",
"@types/request-ip": "^0.0.41",
"autoprefixer": "^10.4.16",
"cypress": "^13.6.1",
"dotenv": "^16.3.1",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"next-bundle-analyzer": "^0.6.8",
"next-circular-dependency": "^1.0.1",
"next-sitemap": "^4.2.3",
"next-translate-plugin": "^2.6.2",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"tailwindcss": "^3.3.6",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"walkdir": "^0.4.1"
},
"packageManager": "yarn@3.6.2",
"lint-staged": {
"*": "yarn prettier -u --write"
}
}