-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.12 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
{
"name": "yfu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:redis": "(docker compose up -d redis && next; docker compose down)",
"dev:ts": "tsc --watch",
"start": "tsc && next build && next start",
"build": "tsc && next build",
"export": "tsc && next build && next export",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lintfix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@rainbow-me/rainbowkit": "^2.2.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^5.61.3",
"@upstash/redis": "^1.34.3",
"@yearn-finance/web-lib": "^0.18.7",
"axios": "^1.3.4",
"ethcall": "^4.8.13",
"ethers": "^5.7.1",
"form-data": "^4.0.0",
"framer-motion": "^10.2.3",
"next": "^15.0.3",
"next-pwa": "^5.6.0",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"swr": "^2.1.0",
"tailwindcss": "^3.2.7",
"viem": "2.x",
"wagmi": "^2.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/ioredis": "^4.28.10",
"@types/node": "^18.15.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.4",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-brackets": "^0.1.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.10.1",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-nesting": "^11.2.1",
"react-intersection-observer": "^9.13.1",
"sass": "^1.58.3",
"sharp": "^0.31.3",
"ts-loader": "^9.4.2",
"typescript": "^5.7.2",
"use-debounce": "^10.0.4"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}