-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.74 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": "pf-payment-stream",
"version": "1.0.0",
"description": "Pure Finance Payment Stream Gadget",
"directories": {
"test": "test"
},
"scripts": {
"precompile": "hardhat clean",
"compile": "hardhat compile",
"pretest": "npm run compile",
"test": "hardhat test",
"coverage": "npm run compile && npx hardhat coverage --temp artifacts",
"fork": "hardhat node --no-deploy",
"deploy": "hardhat deploy",
"deploy:hemiSepolia": "hardhat deploy --network hemiSepolia",
"create-release": "hardhat create-release",
"lint": "eslint ./test/*",
"lint:fix": "eslint --fix ./test --ext .js",
"solhint": "solhint './contracts/**/*.sol'",
"solhint:fix": "prettier --write 'contracts/**/*.sol'",
"prepare": "husky install"
},
"author": "BLOQ",
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@openzeppelin/contracts": "4.8.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"axios": "^0.21.1",
"compare-versions": "^6.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"husky": "^6.0.0",
"lodash": "^4.17.21",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solc": "0.8.9",
"solhint": "4.1.1",
"solhint-plugin-prettier": "0.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}