-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "0g-serving-contract",
"author": "Zero Gravity Labs",
"version": "0.1.0",
"license": "Unlicense",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "npx hardhat deploy --tags Serving --network",
"upgradeVerifier": "npx hardhat deploy --tags Upgrade_Verifier --network",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol' --ignore-path .solhintignore",
"lint:ts": "eslint 'test/**/*.ts' '*.ts' --max-warnings 0 --fix",
"fmt:sol": "prettier 'contracts/**/*.sol' -w",
"fmt:ts": "prettier 'test/**/*.ts' '*.ts' -w",
"testGolden": "npx ts-node src/utils/zk_settlement_calldata/generate_golden_file.ts"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomicfoundation/ignition-core": "^0.15.5",
"@typechain/hardhat": "^9.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^22.2.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "^4.3.6",
"dotenv": "^16.4.5",
"eslint": "9.x",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"ethers": "^6.12.1",
"hardhat": "^2.22.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^2.1.1",
"hardhat-interface-generator": "^0.0.6",
"fs": "^0.0.1-security",
"globals": "^15.3.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hash-wasm": "^4.9.0",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-solidity": "1.1.2",
"solhint": "^5.0.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^4.7.4",
"typescript-eslint": "^7.12.0"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/hardhat-upgrades": "^3.5.0"
}
}