-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/chai": "^4.3.0",
"@types/jest": "^26.0.20",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.4",
"bootstrap": "^4.6.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"evm-chains": "^0.2.0",
"hardhat": "^2.8.0",
"hardhat-ethers": "^1.0.1",
"hardhat-gas-reporter": "^1.0.6",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"react-scripts": "5.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/react-router-dom": "^5.1.7",
"@types/react-router-hash-link": "^1.2.1",
"sass": "^1.45.0"
},
"scripts": {
"start": "yarn --cwd ./website start",
"build": "react-scripts build",
"test": "npx hardhat test",
"eject": "react-scripts eject",
"blockchain": "npx hardhat node --config hardhat.config.ts",
"fork": "npx hardhat node --config hardhatfork.config.ts",
"deploy": "npx hardhat run scripts/deploy.ts --network localhost"
},
"eslintConfig": {
"extends": "react-app",
"settings": {
"react": {
"version": "latest"
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}