-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
118 lines (118 loc) · 3.74 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@hai-on-op/app",
"version": "0.0.0",
"homepage": ".",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --dir src/",
"test:watch": "vitest --dir src/",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn run lint -- --fix",
"prettier": "prettier src --check",
"prettier:fix": "yarn run prettier -- --write",
"format": "yarn run prettier:fix && yarn run lint:fix",
"format:check": "yarn run prettier && yarn run lint"
},
"peerDependencies": {
"@babel/runtime": "7.17.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"dependencies": {
"@apollo/client": "3.8.8",
"@ethersproject/experimental": "5.4.0",
"@ethersproject/providers": "5.4.5",
"@hai-on-op/sdk": "1.2.18",
"@nivo/core": "0.84.0",
"@nivo/line": "0.84.0",
"@nivo/pie": "0.84.0",
"@rainbow-me/rainbowkit": "1.0.9",
"@vercel/analytics": "1.1.2",
"@vercel/node": "^3.0.24",
"axios": "0.27.2",
"dayjs": "1.9.4",
"easy-peasy": "3.3.1",
"ethers": "5.4.7",
"graphql": "16.8.1",
"i18next": "19.7.0",
"numeral": "2.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-feather": "2.0.9",
"react-helmet-async": "1.0.7",
"react-i18next": "11.7.2",
"react-paginate": "6.5.0",
"react-router-dom": "5.3.0",
"react-youtube": "10.1.0",
"styled-components": "5.2.0",
"viem": "1.19.15",
"vite": "4.4.9",
"wagmi": "1.4.12"
},
"devDependencies": {
"@testing-library/jest-dom": "4.2.4",
"@types/classnames": "2.2.11",
"@types/jest": "24.0.0",
"@types/lodash.merge": "4.6.7",
"@types/node": "12.0.0",
"@types/numeral": "0.0.28",
"@types/react-custom-scrollbars": "4.0.7",
"@types/react-dom": "17.0.1",
"@types/react-paginate": "6.2.1",
"@types/react-router-dom": "5.3.0",
"@types/react-transition-group": "4.4.0",
"@types/styled-components": "5.1.3",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"@vitejs/plugin-react-swc": "3.3.2",
"autoprefixer": "10.4.15",
"buffer": "6.0.3",
"eslint": "8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.3",
"husky": "5.0.9",
"jsdom": "22.1.0",
"lint-staged": "10.5.4",
"lodash.merge": "4.6.2",
"prettier": "3.0.3",
"typescript": "5.1.6",
"vite-plugin-vercel": "^5.0.2",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"react-error-overlay": "6.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md,html}": "prettier --write --ignore-unknown"
}
}