-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.59 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
{
"name": "dex-exchange",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint -c .eslintrc.json --ext .js,.jsx,.ts,.tsx src --quiet --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@apollo/client": "3.7.11",
"@floating-ui/react": "^0.26.17",
"@formatjs/intl-localematcher": "^0.5.4",
"@tanstack/react-query": "5.0.5",
"big.js": "^6.2.1",
"clsx": "^2.1.1",
"d3": "7.6.1",
"decimal.js-light": "^2.5.1",
"dexie": "^4.0.4",
"dexie-react-hooks": "^1.1.7",
"downloadjs": "^1.4.7",
"ethereumjs-wallet": "^1.0.2",
"formik": "^2.4.6",
"graphql": "^16.8.2",
"jsbi": "^3.2.5",
"lodash.isequal": "^4.5.0",
"negotiator": "^0.6.3",
"next": "^14.2.4",
"next-intl": "^3.1.2",
"next-themes": "^0.2.1",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-number-format": "5.3.4",
"react-responsive": "^10.0.0",
"react-virtualized": "^9.22.5",
"sonner": "^1.4.0",
"tailwind-merge": "^2.3.0",
"tiny-invariant": "^1.3.3",
"toformat": "^2.0.0",
"viem": "^2.15.1",
"wagmi": "^2.10.2",
"yup": "^1.4.0",
"zustand": "^4.4.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/client-api": "^7.6.17",
"@storybook/nextjs": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/test": "^8.0.9",
"@tailwindcss/container-queries": "^0.1.1",
"@types/big.js": "^4.0.5",
"@types/d3": "7.4.3",
"@types/downloadjs": "^1.4.6",
"@types/invariant": "^2.2.37",
"@types/js-cookie": "^3.0.6",
"@types/lodash.isequal": "^4.5.8",
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-virtualized": "^9.21.29",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.8.0",
"next-translate-plugin": "^2.6.2",
"postcss": "^8",
"prettier": "^3.1.0",
"storybook": "^8.0.9",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.4.3"
}
}