This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.91 KB
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
{
"name": "ibco-interface",
"version": "0.1.0",
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"start": "yarn compile-external-abi-types && REACT_APP_CHAIN=rinkeby react-scripts start",
"build:dev": "yarn compile-external-abi-types && REACT_APP_CHAIN=rinkeby react-scripts build",
"build:prod": "yarn compile-external-abi-types && REACT_APP_CHAIN=mainnet react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .ts,.tsx ./src",
"lint:fix": "yarn lint --fix",
"format": "prettier --config .prettierrc.json --write 'src/**/*.{js,jsx,ts,tsx}'",
"diff-check": "git diff --exit-code -- .",
"ci:format": "yarn lint:fix && yarn format && yarn diff-check",
"compile-external-abi-types": "typechain --target ethers-v5 --out-dir src/abis/types './src/abis/**/*.json'"
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@ethersproject/experimental": "^5.1.2",
"@metamask/jazzicon": "^2.0.0",
"@reduxjs/toolkit": "^1.5.1",
"@uniswap/sdk-core": "^3.0.0-alpha.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.0",
"antd": "^4.13.0",
"big.js": "^6.1.1",
"date-fns": "^2.19.0",
"date-fns-tz": "^1.1.4",
"graphql": "^15.5.0",
"polished": "^4.1.2",
"react": "^17.0.1",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"rebass": "^4.0.7",
"redux-localstorage-simple": "^2.4.0",
"styled-components": "^5.2.1",
"subscriptions-transport-ws": "^0.9.19",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.1.0",
"@testing-library/user-event": "12.1.10",
"@typechain/ethers-v5": "^7.0.0",
"@types/big.js": "^6.0.2",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/rebass": "^4.0.8",
"@types/styled-components": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@web3-react/abstract-connector": "^6.0.7",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"node": "^12.0.0",
"prettier": "^2.2.1",
"typechain": "^5.0.0",
"typescript": "^4.2.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=12.x"
}
}