-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
{
"name": "meth-web-app",
"version": "1.0.0",
"homepage": ".",
"repository": "github:Mirror-Protocol/meth-web-app",
"author": "Terra <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@apollo/client": "^3.4.17",
"@material-ui/core": "^4.12.3",
"@metamask/onboarding": "^1.0.1",
"@terra-money/terra.js": "^2.0.16",
"@tippyjs/react": "^4.2.6",
"@types/classnames": "^2.3.1",
"@types/node": "^16.11.7",
"@types/numeral": "^2.0.2",
"@types/ramda": "^0.27.49",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.2",
"@uniswap/sdk": "^3.0.3",
"@walletconnect/web3-provider": "^1.6.6",
"@web3-react/walletlink-connector": "^6.2.8",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"classnames": "^2.3.1",
"date-fns": "^2.25.0",
"ethers": "^5.5.1",
"graphql": "^15.7.2",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"numeral": "^2.0.6",
"prettier": "^2.4.1",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-router-dom": "^6.0.2",
"react-scripts": "^4.0.3",
"recoil": "^0.5.2",
"sass": "^1.43.4",
"tippy.js": "^6.3.7",
"typescript": "^4.4.4",
"use-onclickoutside": "^0.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.{ts,tsx,json,scss,md}": [
"prettier --write"
]
},
"prettier": {
"semi": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}