-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.67 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
{
"name": "@nodefactoryio/solidity-contracts-starter",
"version": "0.0.1",
"private": false,
"repository": {
"url": "[email protected]:NodeFactoryIo/solidity-contracts-starter.git",
"type": "git"
},
"authors": [
"Marin Petrunić <[email protected]>",
"Belma Gutlić <[email protected]>",
"Nikola Mlinarić <[email protected]>",
"Mak Muftić <[email protected]>"
],
"files": [
"typechain",
"artifacts",
"contracts",
"deployments",
"@types"
],
"types": "./typechain/index.d.ts",
"scripts": {
"prepare": "env-prompt -d .env.sample",
"build": "yarn run clean && yarn run env && yarn run compile && yarn run typechain",
"lint": "npx solhint contracts/**/*.sol",
"lint:fix": "npx solhint contracts/**/*.sol --fix",
"clean": "rm -rf artifacts cache coverage && npx hardhat clean",
"compile": "npx hardhat compile",
"deploy": "npx hardhat deploy --export-all './deployments/deployments.json'",
"deploy:localhost": "./wait-for-it.sh localhost:8545 -- sleep 1 && hardhat deploy --network localhost",
"deploy:local": "concurrently --raw --kill-others --success first \"hardhat node\" \"yarn deploy:localhost\"",
"deploy:goerli": "hardhat deploy --network goerli",
"help": "npx hardhat help",
"node:local": "npx hardhat node",
"script": "hardhat run",
"test": "hardhat test --network hardhatevm",
"test:localhost": "./wait-for-it.sh localhost:8545 -- hardhat test --network localhost",
"test:ci": "yarn run test:gas && yarn run test:coverage",
"test:gas": "REPORT_GAS=true concurrently --raw --kill-others --success first \"hardhat node >/dev/null\" \"yarn test:localhost\"",
"test:coverage": "COVERAGE=1 hardhat coverage --network coverage",
"typechain": "npx hardhat typechain"
},
"devDependencies": {
"@nodefactory/env-prompt": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "^15.3.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.1.0",
"dotenv": "^9.0.2",
"env-prompt": "^1.2.3",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.1",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^8.4.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
}
}