-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.24 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.24 KB
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
101
102
103
104
105
106
107
108
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:mesh": "graphclient build --dir ./src/server/",
"codegen:graphql": "rimraf **/*.generated.ts && graphql-codegen --config codegen.js",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/styled-system": "^2.3.1",
"@chakra-ui/system": "^2.2.9",
"@chakra-ui/theme-tools": "^2.0.2",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.9.0",
"@enzoferey/ethers-error-parser": "^0.2.1",
"@ethersproject/units": "^5.7.0",
"@hookform/resolvers": "^2.9.8",
"@internationalized/date": "^3.0.1",
"@mui/lab": "5.0.0-alpha.99",
"@mui/material": "^5.10.5",
"@next/bundle-analyzer": "^12.3.0",
"@next/font": "^13.0.5",
"@rainbow-me/rainbowkit": "^0.8.0",
"@saas-ui/date-picker": "^0.6.6",
"@saas-ui/forms": "^1.3.1",
"@saas-ui/react": "^1.6.1",
"@tanstack/query-core": "^4.15.1",
"@tanstack/query-sync-storage-persister": "^4.15.1",
"@tanstack/react-query": "^4.15.1",
"@tanstack/react-query-devtools": "^4.15.1",
"@tanstack/react-query-persist-client": "^4.15.1",
"@wagmi/core": "^0.6.12",
"abitype": "^0.1.7",
"boring-avatars": "^1.7.0",
"bs58": "^5.0.0",
"clsx": "^1.2.1",
"cors": "^2.8.5",
"encoding": "^0.1.13",
"ethers": "^5.7.0",
"framer-motion": "^6.3.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-yoga": "^3.0.0",
"jotai": "^1.8.4",
"jotai-tanstack-query": "^0.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^13.0.5",
"next-seo": "^5.5.0",
"object-scan": "^18.5.0",
"ra-core": "^4.4.4",
"ra-data-json-server": "^4.4.4",
"react": "^18.2.0",
"react-admin": "^4.4.4",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.5",
"react-portal": "^4.2.2",
"react-timeago": "^7.1.0",
"react-web-share": "^2.0.0",
"ts-essentials": "^9.3.0",
"ts-invariant": "^0.10.3",
"type-fest": "^3.2.0",
"use-debounce": "^8.0.4",
"wagmi": "^0.8.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/near-operation-file-preset": "^2.4.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-query": "^4.0.1",
"@types/cors": "^2.8.12",
"@types/lodash": "^4.14.185",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-timeago": "^4.1.3",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
]
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}