-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "dappchef-contracts",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "hardhat node & yarn compile --network localhost",
"compile": "hardhat compile",
"deploy": "yarn compile && hardhat deploy",
"test": "hardhat test",
"test-consumeMsg": "hardhat test ./test/ConsumeMsg.ts",
"test-reward": "hardhat test ./test/Reward.ts",
"execute": "node -r ts-node/register -r tsconfig-paths/register hardhatRunWithArgs.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/download": "^8.0.1",
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"dotenv": "^14.3.2",
"download": "^8.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.8.4"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/prompts": "^2.4.2",
"files-from-path": "^0.2.6",
"fs": "^0.0.1-security",
"ganache": "^7.7.7",
"ganache-core": "^2.13.2",
"nft.storage": "^7.0.0",
"prettier-plugin-solidity": "^1.1.3",
"prompts": "^2.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"config": {
"solidity": {
"version": "0.8.17"
},
"paths": {
"contracts": "./problemVersion1",
"tests": "./test",
"cache": "./cache",
"build": {
"contracts": "./build/contracts"
}
}
}
}