-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 2.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
{
"name": "bankless-liquity-interface",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ethersproject/address": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/providers": "^5.3.1",
"@fontsource/clear-sans": "^4.5.3",
"@fontsource/open-sans": "^4.5.5",
"@fontsource/space-grotesk": "^4.5.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@liquity/lib-base": "^3.0.0",
"@liquity/lib-ethers": "^3.4.0",
"@liquity/providers": "^1.0.1",
"@popperjs/core": "^2.11.5",
"@reduxjs/toolkit": "^1.8.1",
"@tippyjs/react": "^4.2.6",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"ethers": "^5.6.2",
"framer-motion": "^6.2.10",
"@web3-react/walletconnect-connector": "^6.2.13",
"@web3-react/walletlink-connector": "^6.2.13",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.5",
"mrm": "^4.0.0",
"next": "12.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-popper": "^2.2.5",
"react-redux": "^7.2.8",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.4",
"@types/node": "^17.0.14",
"@types/react": "17.0.43",
"@types/react-redux": "^7.1.20",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-next": "^12.1.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-testing-library": "^5.2.1",
"husky": "^7.0.2",
"jest": "^27.2.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"typescript": "4.6.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix",
"jest -b --silent --findRelatedTests"
]
}
}