-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.23 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
{
"name": "@keccak_example/starknet",
"private": true,
"version": "0.0.1",
"description": "Example of how to use Keccak on starknet",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.11",
"@shardlabs/starknet-hardhat-plugin": "^0.7.3",
"@types/chai": "^4.3.3",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.10",
"chai": "^4.3.6",
"ethers": "^5.6.8",
"prettier": "^2.1.1",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"web3": "^1.5.2",
"@ethersproject/constants": "^5.4.0",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@resolver-engine/core": "0.3.3",
"@typechain/ethers-v5": "^8.0.3",
"@typechain/hardhat": "^3.0.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.6.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solc-0.8.7": "yarn:solc@0.8.7-fixed",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"typechain": "^6.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"hardhat": "2.10.1",
"starknet": "^4.9.0"
},
"scripts": {
"compile": "hardhat starknet-compile",
"test": "hardhat --network localhost test",
"test:exercise1": "hardhat --network localhost test ./exercises/Exercise1.test.ts",
"test:exercise2": "hardhat --network localhost test ./exercises/Exercise2.test.ts",
"test:exercise3": "hardhat --network localhost test ./exercises/Exercise3.test.ts",
"test:exercise4": "hardhat --network localhost test ./exercises/Exercise4.test.ts"
}
}