-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "rave-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier": "prettier --write contracts/**/*.sol",
"lint": "prettier --list-different contracts/**/*.sol",
"compile:dry": "npx hardhat compile",
"compile:quiet": "npm run prettier && npm run compile:dry -- --quiet",
"compile": "npm run prettier && npm run compile:dry",
"test:dry": "npx hardhat test",
"test": "npm run lint && npm run compile:dry && npm run test:dry",
"pre-ci": "echo '' > .env"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"hardhat": "^2.13.0"
},
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@layerzerolabs/solidity-examples": "^0.0.10",
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"eth-provider": "^0.13.6",
"hardhat-contract-sizer": "^2.8.0",
"i": "^0.3.7",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9",
"npm": "^9.6.4",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"zksync-web3": "^0.14.3"
}
}