-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@subsquid/subsquid-web",
"version": "0.0.1",
"type": "module",
"private": true,
"exports": "./src/index.tsx",
"scripts": {
"analyze": "npx vite-bundle-visualizer",
"build": "vite build --outDir build",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"tsc": "tsc --noEmit",
"start": "vite serve --port 3005 --host 127.0.0.1",
"preview": "vite preview --outDir build --host 127.0.0.1 --port 3005",
"upg": "yarn upgrade-interactive",
"prepare": "husky install",
"codegen": "graphql-codegen --config graphql.config.ts"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.21",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.21",
"@rainbow-me/rainbowkit": "^2.2.0",
"@sentry/react": "^7.118.0",
"@tanstack/react-query": "^5.49.2",
"axios": "^1.7.2",
"base58-universal": "^2.0.0",
"bignumber.js": "^9.1.2",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"country-list": "^2.3.0",
"date-fns": "^3.6.0",
"formik": "^2.4.6",
"graphql": "^16.9.0",
"lodash-es": "^4.17.21",
"material-ui-popup-state": "^5.1.2",
"pretty-bytes": "^6.1.1",
"qs": "^6.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.24.0",
"react-scroll": "^1.9.0",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^2.12.7",
"semver": "^7.6.3",
"use-debounce": "^10.0.1",
"use-element-position": "^1.0.13",
"use-local-storage-state": "^19.3.1",
"viem": "^2.21.44",
"wagmi": "^2.12.25",
"yup": "^1.4.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.8",
"@graphql-codegen/typescript-operations": "^4.2.2",
"@graphql-codegen/typescript-react-query": "^6.1.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/ms": "^0.7.34",
"@types/pretty-bytes": "^5.2.0",
"@types/qs": "^6.9.15",
"@types/query-string": "^6.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-scroll": "^1.8.10",
"@types/react-select": "5.0.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-react": "^4.3.1",
"@wagmi/cli": "^2.1.16",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-html": "^3.2.2",
"vite-plugin-html-env": "^1.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"packageManager": "yarn@4.1.1"
}