-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.53 KB
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
{
"name": "fhe-fheight",
"description": "Privacy-preserving tactical card game using FHEVM",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20",
"npm": ">=7.0.0"
},
"license": "BSD-3-Clause-Clear",
"keywords": [
"fhevm",
"zama",
"blockchain",
"card-game",
"fheight",
"privacy",
"fhe"
],
"dependencies": {
"encrypted-types": "^0.0.4",
"@fhevm/solidity": "^0.9.1",
"@openzeppelin/contracts": "^5.0.0"
},
"devDependencies": {
"@fhevm/hardhat-plugin": "^0.3.0-1",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-network-helpers": "^1.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.8",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@zama-fhe/relayer-sdk": "^0.3.0-5",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.15.0",
"hardhat": "^2.26.0",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^2.3.0",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^2.1.0",
"rimraf": "^6.0.1",
"solhint": "^6.0.0",
"solidity-coverage": "^0.8.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "rimraf ./fhevmTemp ./artifacts ./cache ./coverage ./types ./coverage.json ./dist && npm run typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"test": "hardhat test",
"test:sepolia": "hardhat test --network sepolia",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"chain": "hardhat node --network hardhat --no-deploy",
"deploy:localhost": "hardhat deploy --network localhost",
"deploy:sepolia": "hardhat deploy --network sepolia",
"verify:sepolia": "hardhat verify --network sepolia"
},
"overrides": {
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"axios@>=1.3.2 <=1.7.3": ">=1.7.4",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"micromatch@<4.0.8": ">=4.0.8",
"elliptic@<6.6.0": ">=6.6.0",
"undici@>=6.0.0 <6.21.1": ">=6.21.1 <7.0.0",
"tar-fs@>=2.0.0 <2.1.2": ">=2.1.2",
"cookie@<0.7.0": ">=0.7.0",
"minimatch": "^3.1.2"
}
}