-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.98 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
{
"name": "ape_tax",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"dev:ts": "tsc --watch",
"start": "tsc && next build && next start",
"build": "tsc && next build",
"export": "tsc && next build && next export -o ipfs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lintfix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^1.3.0",
"@wagmi/core": "^1.4.7",
"@yearn-finance/web-lib": "^3.0.78",
"viem": "^1.19.9",
"wagmi": "^1.4.7",
"@ethersproject/providers": "^5.7.2",
"@next/bundle-analyzer": "^13.5.4",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"axios": "^1.5.1",
"cors": "^2.8.5",
"ethers": "^5.7.2",
"grapheme-splitter": "^1.0.4",
"memoizee": "^0.4.15",
"next": "^14.0.4",
"next-pwa": "^5.6.0",
"next-seo": "^6.4.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.4",
"tailwindcss": "^3.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.8",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"bump": "^0.2.5",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-brackets": "^0.1.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"eslint-plugin-unused-imports": "^3.0.0",
"inquirer": "^9.2.11",
"next-transpile-modules": "^10.0.1",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"postcss-nesting": "^12.0.2",
"sass": "^1.69.7",
"sharp": "^0.33.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
}
}