-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·41 lines (41 loc) · 1.13 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
{
"name": "kokken",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"node": "npx hardhat node;",
"hh": "npx hardhat run --network localhost migrations/1_local_node.js;",
"any": "node migrations/2_any.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeDcode-2021/smart-contract-testing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeDcode-2021/smart-contract-testing/issues"
},
"homepage": "https://github.com/codeDcode-2021/smart-contract-testing#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.10",
"chai": "^4.3.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26",
"hardhat": "^2.0.8",
"truffle-assertions": "^0.9.2"
},
"dependencies": {
"fs-extra": "^7.0.1",
"ganache-cli": "^6.12.2",
"remixd": "^0.2.4-alpha.0",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.3.3"
}
}