-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.85 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
84
85
86
87
{
"name": "scienft-contracts",
"version": "1.0.0",
"author": "ScieNFT Ltd.",
"license": "MIT",
"scripts": {
"build": "npx hardhat clean && npx hardhat compile",
"test": "npx hardhat compile && npx hardhat test",
"coverage": "npx hardhat coverage",
"start": "npx hardhat node",
"typechain": "npx hardhat typechain",
"format": "prettier --write .",
"docgen": "npx hardhat docgen",
"metrics": "npx solidity-code-metrics ./contracts/*.sol --html > metrics.html",
"checkBalance:fuji": "npx hardhat run --network fuji tools/checkBalance.ts",
"checkBalance:avalanche": "npx hardhat run --network avalanche tools/checkBalance.ts",
"mine:fuji": "npx hardhat run --network fuji tools/mine.ts",
"mine:avalanche": "npx hardhat run --network avalanche tools/mine.ts"
},
"description": "ScieNFT contract development",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScieNFT/contracts.git"
},
"bugs": {
"url": "https://github.com/ScieNFT/contracts/issues"
},
"homepage": "https://github.com/ScieNFT/contracts#readme",
"devDependencies": {
"@avalabs/avalanchejs": "^3.17.0",
"@babel/core": "^7.22.9",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/strings": "^5.7.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@nomicfoundation/hardhat-chai-matchers": "^1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2",
"@nomicfoundation/hardhat-verify": "^1.1.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v5": "^10",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.7",
"@types/ws": "^8.5.5",
"babel-jest": "^29.6.2",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"esm": "^3.2.25",
"hardhat": "^2.17.1",
"hardhat-docgen": "^1.3.0",
"hardhat-ethers": "^1.0.1",
"hardhat-gas-reporter": "^1.0.9",
"jest": "^29.6.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-code-metrics": "^0.0.23",
"solidity-coverage": "^0.8.4",
"ts-generator": "^0.1.1",
"ts-jest": "^29.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"dependencies": {},
"overrides": {
"@nomicfoundation/hardhat-chai-matchers": "^1",
"@nomicfoundation/hardhat-toolbox": "^2",
"@typechain/ethers-v5": "^10",
"@typechain/hardhat": "^6.1.6",
"ethers": "^5",
"multiformats": "9",
"prettier": "^2.8.8"
}
}