-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.78 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": "0xdevhub-crosschain-nft-contracts",
"version": "1.0.0",
"private": false,
"repository": "git@github.com:0xdevhub/core-contracts.git",
"author": "welliton gervickas <wellitogervickas@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"node": "NODE_ENV=development hardhat node",
"verify": "hardhat verify",
"compile": "hardhat compile",
"test": "NODE_ENV=development hardhat test",
"typechain": "hardhat typechain",
"test:coverage": "hardhat coverage",
"test:watch": "hardhat typechain && chokidar '(contracts|test)/**/*' -c 'npx hardhat test'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.2.0",
"@types/lodash": "^4.14.202",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"chai": "^4.2.0",
"chokidar-cli": "^3.0.0",
"dotenv": "^16.3.1",
"ethers": "^6.4.0",
"hardhat": "^2.18.3",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0"
},
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^0.7.6",
"@openzeppelin/contracts": "^5.0.0",
"cli-spinners": "^2.9.2",
"lodash": "^4.17.21"
}
}