-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.15 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "lido-csm-ea-checker",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE_BUNDLE=true next build",
"start": "NODE_OPTIONS='-r next-logger' next start",
"lint": "eslint --ext ts,tsx,js,mjs .",
"lint:fix": "yarn lint --fix",
"types": "tsc --noEmit",
"postinstall": "husky install || true",
"test": "yarn test:e2e",
"test:unit": "jest",
"test:e2e": "playwright test"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@lido-sdk/constants": "^3.2.1",
"@lido-sdk/contracts": "^3.0.4",
"@lido-sdk/providers": "^1.4.14",
"@lido-sdk/react": "^2.0.5",
"@lidofinance/analytics-matomo": "^0.51.0",
"@lidofinance/api-metrics": "^0.41.0",
"@lidofinance/api-rpc": "^0.41.0",
"@lidofinance/eth-api-providers": "^0.41.0",
"@lidofinance/eth-providers": "^0.41.0",
"@lidofinance/lido-ui": "^3.24.0",
"@lidofinance/next-api-wrapper": "^0.41.0",
"@lidofinance/next-ip-rate-limit": "^0.41.0",
"@lidofinance/next-pages": "^0.41.0",
"@lidofinance/rpc": "^0.41.0",
"bignumber.js": "9.1.0",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"eslint-config-next": "^14.2.3",
"ethers": "^5.7.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"ms": "^2.1.3",
"next": "^14.2.3",
"next-logger": "^3.0.2",
"next-secure-headers": "^2.2.0",
"nprogress": "^0.2.0",
"prom-client": "^14.0.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.2.0",
"reef-knot": "^4.2.0",
"styled-components": "^5.3.5",
"swr": "^2.2.5",
"tiny-invariant": "^1.1.0",
"uuid": "^8.3.2",
"wagmi": "0.12.19"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt": "^17.4.4",
"@lidofinance/eslint-config": "^0.34.0",
"@next/bundle-analyzer": "^13.2.4",
"@next/eslint-plugin-next": "^13.4.13",
"@playwright/test": "^1.29.2",
"@svgr/webpack": "^8.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@types/jest": "28.1.6",
"@types/js-cookie": "^3.0.0",
"@types/lodash": "^4.14.186",
"@types/memory-cache": "0.2.2",
"@types/ms": "^0.7.31",
"@types/node": "^18.6.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.22",
"@types/react-transition-group": "^4.4.3",
"@types/styled-components": "^5.1.23",
"@types/styled-system": "^5.1.17",
"@types/uuid": "^8.3.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^7.0.1",
"jest": "^29.5.0",
"jsonschema": "^1.4.1",
"lint-staged": "^13.2.3",
"playwright": "^1.29.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.0",
"typechain": "^8.1.1",
"typescript": "^4.9.4",
"url-loader": "^4.1.1",
"webpack-preprocessor-loader": "^1.3.0"
},
"resolutions": {
"postcss": "^8.4.31",
"crypto-js": "^4.2.0",
"@ledgerhq/hw-transport-webhid": "6.28.1",
"@ledgerhq/hw-transport": "6.30.1"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"eslint --ignore-path .gitignore --max-warnings=0"
],
"./**/*.{ts,tsx,css,md,json}": [
"prettier --write"
]
},
"browserslist": [
"> 1%, last 2 versions, not dead",
"last 1 ios_saf major versions"
]
}