This repository has been archived by the owner on Jul 23, 2021. It is now read-only.
forked from lidofinance/lido-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.36 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
{
"name": "lido-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext ts,tsx .",
"lint:fix": "yarn lint --fix",
"typechain": "typechain --target=ethers-v5 --out-dir ./generated './abi/*.json'",
"postinstall": "husky install && yarn typechain"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.3.0",
"@ethersproject/address": "^5.3.0",
"@ethersproject/bignumber": "^5.3.0",
"@ethersproject/bytes": "^5.3.0",
"@ethersproject/constants": "^5.3.0",
"@ethersproject/contracts": "^5.3.0",
"@ethersproject/providers": "^5.3.0",
"@ethersproject/units": "^5.3.0",
"@lido-sdk/constants": "^1.2.0",
"@lido-sdk/contracts": "^1.3.2",
"@lido-sdk/fetch": "^1.2.1",
"@lido-sdk/helpers": "^1.3.1",
"@lido-sdk/react": "^1.11.1",
"@lido-sdk/web3-react": "^1.3.0",
"@lidofinance/lido-ui": "^1.6.10",
"copy-to-clipboard": "^3.3.1",
"ethers": "^5.3.0",
"gray-matter": "^4.0.2",
"memory-cache": "^0.2.0",
"next": "^10.0.0",
"react": "17.0.1",
"react-device-detect": "^1.17.0",
"react-dom": "17.0.1",
"react-is": "^17.0.2",
"react-toastify": "^7.0.4",
"remark": "^12.0.0",
"remark-external-links": "^8.0.0",
"remark-html": "^12.0.0",
"styled-components": "^5.3.0",
"swr": "^0.5.6"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/memory-cache": "^0.2.1",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typechain": "^5.0.0",
"typescript": "^4.3.2",
"url-loader": "^4.1.1"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"eslint --ignore-path .gitignore --max-warnings=0"
],
"./**/*.{ts,tsx,css,md,json}": [
"prettier --write"
]
}
}