-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.38 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ethersproject/providers": "^5.6.8",
"@reduxjs/toolkit": "^1.6.2",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"@vitejs/plugin-react": "^1.0.5",
"@walletconnect/client": "^1.7.8",
"@walletconnect/qrcode-modal": "^1.7.8",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.13",
"@web3-react/walletlink-connector": "^6.2.14",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"friendly-challenge": "^0.9.0",
"history": "^5.2.0",
"javascript-time-ago": "^2.3.10",
"libphonenumber-js": "^1.9.47",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-avatar-editor": "^12.0.0",
"react-dom": "^17.0.2",
"react-loading": "^2.0.3",
"react-loading-skeleton": "^3.0.1",
"react-modal": "^3.15.1",
"react-qrcode-logo": "^2.5.0",
"react-redux": "^7.2.6",
"react-router": "6.2.1",
"react-router-dom": "6.2.1",
"react-toastify": "^8.1.0",
"react-use-websocket": "^3.0.0",
"recharts": "^2.1.8",
"styled-components": "5.0.1",
"use-metamask": "^1.3.2",
"use-wallet": "^0.13.6",
"uuid": "^8.3.2",
"web3": "^1.7.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/chai": "^4.3.1",
"@types/jest": "^26.0.15",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.52",
"@types/react": "^17.0.0",
"@types/react-avatar-editor": "^10.3.6",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"colors": "^1.4.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.3",
"node-sass": "^6.0.1",
"react-error-overlay": "6.0.9",
"react-scripts": "4.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"vite": "^2.6.10",
"web-vitals": "^1.0.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy_test": "npx hardhat test",
"deploy_fantomtest": "npx hardhat run --network fantomtestnet scripts/deploy.js",
"deploy_ganache": "npx hardhat run --network ganache scripts/deploy.js",
"deploy_local": "npx hardhat run --network localhost scripts/deploy.js",
"deploy_icicbtest": "npx hardhat run --network icicbtestnet scripts/deploy.js",
"deploy_icicb": "npx hardhat run --network icicb scripts/deploy.js",
"deploy_bsctest": "npx hardhat run --network bsctestnet2 scripts/deploy.js",
"deploy_bsc": "npx hardhat run --network bsc scripts/deploy.js",
"deploy": "npx hardhat run --network bsc scripts/deploy-production.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}