-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 3.41 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
{
"name": "dao-voting-ui",
"version": "0.12.1",
"private": true,
"type": "module",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build",
"dev-ipfs": "cross-env IPFS_MODE=true next dev",
"build-ipfs": "cross-env IPFS_MODE=true next build && next export",
"start": "NODE_OPTIONS='-r next-logger' next start",
"lint": "eslint --ext ts,tsx,js,jsx .",
"lint:dockerfile": "dockerfilelint Dockerfile",
"lint:fix": "yarn lint --fix",
"typechain": "typechain --target=ethers-v5 --out-dir ./generated './abi/*.json'",
"postinstall": "husky install && yarn typechain || true"
},
"lint-staged": {
"./**/*.{ts,tsx,js,jsx}": [
"eslint --ignore-path .gitignore --max-warnings=0"
],
"./**/*.{ts,tsx,css,md,json}": [
"prettier --write"
]
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@walletconnect/core": "^2.8.3",
"@walletconnect/ethereum-provider": "^2.8.3"
},
"dependencies": {
"@lido-sdk/constants": "^3.2.1",
"@lido-sdk/contracts": "^3.0.4",
"@lido-sdk/fetch": "^2.1.12",
"@lido-sdk/helpers": "^1.5.1",
"@lido-sdk/providers": "^1.4.14",
"@lido-sdk/react": "^2.0.3",
"@lidofinance/evm-script-decoder": "0.2.2",
"@lidofinance/lido-ui": "3.8.1",
"@lidofinance/next-cache-files-middleware": "^0.33.0",
"@lidofinance/satanizer": "^0.35.0",
"@typechain/ethers-v5": "10.0.0",
"@types/lodash": "4.14.180",
"@types/remove-markdown": "^0.3.1",
"copy-to-clipboard": "3.3.1",
"cors": "2.8.5",
"ethers": "5.7.2",
"ipfs-only-hash": "^4.0.0",
"just-clone": "5.0.1",
"lodash": "4.17.21",
"memory-cache": "^0.2.0",
"mkdirp": "1.0.4",
"moment": "2.29.4",
"moment-duration-format": "^2.3.2",
"ms": "^2.1.3",
"next": "^12",
"next-connect": "0.12.2",
"next-logger": "^3.0.2",
"next-secure-headers": "2.2.0",
"nprogress": "^0.2.0",
"prom-client": "14.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet-async": "^2.0.5",
"react-hook-form": "7.28.1",
"react-markdown": "^8.0.7",
"react-use": "17.3.2",
"reef-knot": "^1.9.0",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.5.0",
"styled-components": "5.3.5",
"swr": "1.2.2",
"tiny-invariant": "^1.1.0",
"typechain": "8.0.0",
"uuid": "^8.3.2",
"wagmi": "0.12.19"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@commitlint/prompt": "17.3.0",
"@svgr/webpack": "^8.0.1",
"@types/cors": "2.8.12",
"@types/memory-cache": "0.2.2",
"@types/moment-duration-format": "2.2.3",
"@types/ms": "^0.7.31",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-components": "5.1.24",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"cross-env": "^7.0.3",
"dockerfilelint": "1.8.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "2.6.1",
"type-fest": "2.12.1",
"typescript": "^4.9.4",
"url-loader": "4.1.1",
"utility-types": "3.10.0",
"webpack-preprocessor-loader": "^1.2.0"
}
}