-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.43 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.43 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
109
110
111
112
113
114
115
116
{
"name": "chain-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"start-next": "next start",
"start": "node server-cached.js",
"lint": "next lint",
"codegen": "graphql-codegen --config codegen.yml",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'"
},
"lint-staged": {
"*.{ts,js,tsx}": [
"prettier src/**/*.ts src/**/*.tsx --write",
"eslint src/**/*.ts src/**/*.tsx --fix"
],
"*.json": [
"prettier --write"
],
"*.{scss}": [
"prettier src/**/*.scss --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@apollo/client": "3.8.10",
"@aws-sdk/client-s3": "^3.606.0",
"@elastic/apm-rum": "^5.12.0",
"@ethersproject/abi": "^5.7.0",
"@rainbow-me/rainbowkit": "^1.3.3",
"@slise/embed-react": "^2.2.0",
"@telekomconsalting/dex-guru-fetch": "0.2.0",
"@telekomconsalting/dex-guru-internal-sdk": "0.2.0",
"@web3-name-sdk/core": "^0.1.2",
"bignumber.js": "9.1.1",
"bytes": "^3.1.2",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"deepmerge": "4.3.1",
"dotenv": "^16.1.4",
"elastic-apm-node": "^3.46.0",
"eslint-config-next": "13.3.1",
"ethers": "^6.7.1",
"express": "^4.18.2",
"formidable": "^3.5.1",
"graphql": "16.6.0",
"isomorphic-dompurify": "^1.8.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"lodash": "4.17.21",
"marked": "^7.0.4",
"mermaid": "^10.4.0",
"mersenne-twister": "^1.1.0",
"next": "14.2.35",
"next-build-id": "^3.0.0",
"pino": "^8.14.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "7.43.9",
"react-script-hook": "^1.7.2",
"react-syntax-highlighter": "15.5.0",
"react-tooltip": "5.21.3",
"react-transition-group": "^4.4.5",
"react-zoom-pan-pinch": "^3.1.0",
"recharts": "^2.12.5",
"redis": "^4.6.7",
"rooks": "^7.14.1",
"siwe": "1.1.6",
"swr": "2.2.2",
"uniqid": "^5.4.0",
"uniqolor": "^1.1.0",
"viem": "^1.10.9",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/client-preset": "3.0.1",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-resolvers": "3.2.1",
"@next/bundle-analyzer": "^13.4.12",
"@svgr/webpack": "8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bytes": "^3.1.1",
"@types/js-cookie": "^3.0.4",
"@types/lodash": "4.14.194",
"@types/marked": "^5.0.1",
"@types/mersenne-twister": "^1.1.3",
"@types/node": "18.15.13",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "15.5.6",
"@types/react-transition-group": "^4.4.6",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "5.59.0",
"cross-env": "^7.0.3",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"pre-push": "0.1.4",
"prettier": "2.8.7",
"sass": "1.62.0",
"typescript": "5.0.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}