-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.96 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
{
"name": "g-minter",
"version": "1.0.0",
"description": "g-minter is Ghost Token Minter ",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"build": "npm run install:fe && yarn",
"build:fe:dev": "cd frontend && REACT_APP_CHAIN_NETWORK=RINKEBY npm run build",
"test": "npx hardhat test",
"test:local": "npx hardhat --network localhost test",
"test:coverage": "npx hardhat coverage --solcoverjs \".solcover.js\"",
"deploy:local": "npx hardhat run $DEPLOY_PATH --network \"localhost\" ",
"deploy:rinkeby": "npx hardhat run $DEPLOY_PATH --network \"rinkeby\"",
"deploy:fe:dev": "npm run build:fe:dev && firebase deploy --only hosting:develop",
"verify:rinkeby": "npx hardhat --network \"rinkeby\" etherscan-verify",
"node": "npx hardhat node",
"clean:modules": "rm -rf node_modules",
"clean:contracts": "rm -rf artifacts && rm -rf cache",
"clean:typechain": "rm -rf typechain",
"clean:root": "npm run clean:modules && npm run clean:contracts && npm run clean:typechain",
"clean:fe": "cd frontend && npm run clean",
"clean": "npm run clean:root && npm run clean:fe",
"console:local": "npx hardhat console --network \"localhost\"",
"console:rinkeby": "npx hardhat console --network \"rinkeby\"",
"install:fe": "cd frontend && npm i",
"install:all": "npm i && npm run install:fe",
"fix": "npm run clean && npm run install:all",
"start": "npm run fix && npm run compile && npm test && npm run node",
"start:fe": "npm run compile && npm run deploy:local && cd frontend && npm start"
},
"keywords": [],
"author": "tyl3r<[email protected]>",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.2.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.4.0",
"hardhat": "2.6.8",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.9.1",
"hardhat-typechain": "^0.3.3",
"husky": "^4.2.3",
"moment": "^2.29.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "9.0.0",
"typechain": "^4.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@chainlink/test-helpers": "^0.0.7-alpha",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@walletconnect/web3-provider": "^1.4.1",
"chai-datetime": "^1.8.0",
"eth-rpc-errors": "^4.0.3",
"ethereum-tx-decoder": "^3.0.0",
"mockdate": "^3.0.5",
"sinon-mocha-test": "^1.2.0",
"web3": "^1.4.0"
},
"engines": {
"node": "14.x",
"npm": "6.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}