-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@zama-ai/fhevm-contracts",
"description": "fhEVM contracts is a Solidity library for secure smart-contract development using fhEVM and TFHE.",
"version": "0.1.0",
"author": {
"name": "zama-ai",
"url": "https://github.com/zama-ai"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.59",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^8.15.0",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.4",
"fhevm": "0.6.0-1",
"fhevm-core-contracts": "0.1.0-2",
"fhevmjs": "^0.6.0-4",
"fs-extra": "^11.2.0",
"hardhat": "2.22.14",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-ignore-warnings": "^0.2.11",
"hardhat-preprocessor": "^0.1.5",
"husky": "^9.1.6",
"lodash": "^4.17.21",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"rimraf": "^6.0.1",
"sha3": "^2.1.4",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "0.8.13",
"solidity-docgen": "^0.6.0-beta.36",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.3",
"web3-validator": "^2.0.6"
},
"files": [
"contracts/governance/",
"contracts/token/",
"contracts/utils/"
],
"keywords": [
"blockchain",
"ethers",
"ethereum",
"hardhat",
"smart-contracts",
"solidity",
"template",
"typescript",
"typechain",
"tfhe"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf ./fhevmTemp ./artifacts ./cache ./coverage ./types ./coverage.json && pnpm typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"deploy:contracts": "hardhat deploy",
"docgen": "hardhat docgen",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:sol": "solhint --max-warnings 10 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"test": "HARDHAT_NETWORK=hardhat npx hardhat test",
"coverage": "npx hardhat coverage",
"task:getEthereumAddress": "hardhat task:getEthereumAddress",
"task:accounts": "hardhat task:accounts"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"extra-bigint": "^1.1.18",
"sqlite3": "^5.1.7"
}
}