-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.56 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.56 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
{
"name": "water-resource-management-platform",
"version": "1.0.0",
"description": "Privacy-preserving water resource allocation platform using FHE on blockchain",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"deploy": "hardhat run scripts/deploy.js --network sepolia",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"verify": "hardhat run scripts/verify.js --network sepolia",
"interact": "hardhat run scripts/interact.js --network sepolia",
"simulate": "hardhat run scripts/simulate.js --network sepolia",
"node": "hardhat node",
"clean": "hardhat clean",
"coverage": "hardhat coverage",
"lint": "npm run lint:sol && npm run lint:js",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
"lint:js": "eslint 'test/**/*.js' 'scripts/**/*.js'",
"lint:js:fix": "eslint 'test/**/*.js' 'scripts/**/*.js' --fix",
"format": "prettier --write 'contracts/**/*.sol' 'test/**/*.js' 'scripts/**/*.js'",
"format:check": "prettier --check 'contracts/**/*.sol' 'test/**/*.js' 'scripts/**/*.js'",
"security": "npm audit && npm run lint:sol",
"security:fix": "npm audit fix",
"prepare": "husky install",
"pre-commit": "npm run lint && npm run format:check"
},
"keywords": [
"blockchain",
"ethereum",
"fhe",
"water-management",
"smart-contracts",
"privacy"
],
"author": "Water Resource Management Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"chai": "^4.2.0",
"eslint": "^8.50.0",
"hardhat": "^2.19.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"ethers": "^6.9.0"
},
"type": "module"
}