This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "meetup-mortgage",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "react-scripts start",
"build": "npm run compile",
"react:build": "react-scripts build",
"clean": "TS_NODE_PROJECT=./tsconfig.hardhat.json hardhat clean",
"compile": "TS_NODE_PROJECT=./tsconfig.hardhat.json SKIP_LOAD=true hardhat compile",
"test": "TS_NODE_PROJECT=./tsconfig.hardhat.json hardhat test",
"test-logs": "TS_NODE_PROJECT=./tsconfig.hardhat.json hardhat test --logs"
},
"author": "Andrey Bronin",
"license": "ISC",
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.1",
"@tenderly/hardhat-tenderly": "1.1.0-beta.5",
"@typechain/ethers-v5": "^7.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.4",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.5",
"mocha": "^8.3.0",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.1.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"@typechain/hardhat": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"web3": "^1.3.5",
"web3modal": "^1.9.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}