generated from NodeFactoryIo/solidity-contracts-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
77 lines (77 loc) · 2.73 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
{
"name": "@niftyhorde/swap-kiwi-contracts",
"version": "1.0.2",
"private": false,
"repository": {
"url": "git@github.com:niftyhorde/swap.kiwi.git",
"type": "git"
},
"authors": [
"Marin Petrunić <marin@nodefactory.io>",
"Belma Gutlić <belma@nodefactory.io>",
"Nikola Mlinarić <nikola@nodefactory.io>",
"Mak Muftić <mak@nodefactory.io>"
],
"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 --target=ethers-v5",
"lint": "npx solhint contracts/**/*.sol",
"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",
"deploy:rinkeby": "hardhat deploy --network rinkeby",
"deploy:mainnet": "hardhat deploy --network mainnet",
"help": "npx hardhat help",
"node:local": "npx hardhat node",
"script": "hardhat run",
"test": "hardhat test",
"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\" \"yarn test:localhost\"",
"test:coverage": "COVERAGE=1 hardhat coverage --network coverage"
},
"devDependencies": {
"@ethersproject/hardware-wallets": "^5.0.14",
"@nodefactory/env-prompt": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^6.0.5",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.0.2",
"dotenv": "^8.2.0",
"env-prompt": "^1.2.3",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.4",
"hardhat": "2.3.X",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"mocha": "^8.3.2",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@ethersproject/contracts": "5.0.X",
"@openzeppelin/contracts": "^4.0.0"
}
}