-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "hack-money-ape",
"version": "0.1.0",
"private": true,
"dependencies": {},
"scripts": {
"node": "npx hardhat node --watch",
"test": "npx hardhat test --deploy-fixture",
"frontend": "cd frontend && npm run start",
"frontend:debug": "cd frontend && npm run start -- --inspect",
"deploy:hardhat": "npx hardhat compile && npx hardhat typechain && npx hardhat deploy && npx hardhat react",
"deploy:goerli": "npx hardhat compile --network goerli && npx hardhat deploy --network goerli && npx hardhat typechain --network goerli && npx hardhat react --network goerli",
"start": "npm run deploy:hardhat && npx hardhat node"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@symfoni/hardhat-react": "^0.3.0",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/lodash": "^4.14.175",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.4",
"hardhat-deploy": "^0.9.1",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-ethernal": "^0.3.10",
"hardhat-typechain": "^0.3.5",
"lodash": "^4.17.21",
"ts-generator": "^0.1.1",
"ts-morph": "^12.0.0",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}