-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
94 lines (94 loc) · 2.99 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
{
"name": "lido-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_OPTIONS='-r next-logger' next build",
"start": "NODE_OPTIONS='-r next-logger' next start",
"lint": "eslint --ext ts,tsx .",
"lint:fix": "yarn lint --fix",
"types": "tsc --noEmit",
"typechain": "typechain --target=ethers-v5 --out-dir ./generated ./abi/*.json",
"postinstall": "husky install && yarn typechain"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/units": "^5.6.1",
"@lido-sdk/constants": "^1.6.0",
"@lido-sdk/contracts": "^2.0.0",
"@lido-sdk/fetch": "^2.1.0",
"@lido-sdk/helpers": "^1.4.3",
"@lido-sdk/react": "^1.18.1",
"@lidofinance/analytics-matomo": "^0.42.0",
"@lidofinance/api-metrics": "^0.42.0",
"@lidofinance/lido-ui": "^3.0.0-next.17",
"@lidofinance/next-api-wrapper": "^0.42.0",
"@lidofinance/next-cache-files-middleware": "^0.42.0",
"@lidofinance/satanizer": "^0.42.0",
"cookie": "^0.5.0",
"copy-to-clipboard": "^3.3.1",
"eslint-config-next": "^13.0.5",
"ethers": "^5.5.3",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.1",
"memory-cache": "^0.2.0",
"next": "^13.0.5",
"next-logger": "^3.0.0",
"next-secure-headers": "^2.2.0",
"prom-client": "^14.0.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"reef-knot": "^0.3.0",
"remark": "^14.0.2",
"remark-external-links": "^9.0.1",
"remark-html": "^15.0.1",
"styled-components": "^5.3.5",
"swr": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt": "^17.3.0",
"@svgr/webpack": "^6.5.1",
"@typechain/ethers-v5": "^10.1.1",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.1",
"@types/memory-cache": "^0.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/styled-components": "^5.1.23",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"typechain": "^8.1.1",
"typescript": "^4.3.5",
"url-loader": "^4.1.1"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"eslint --ignore-path .gitignore --max-warnings=0"
],
"./**/*.{ts,tsx,css,md,json}": [
"prettier --write"
]
}
}