-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.46 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
{
"name": "blocklock-solidity",
"description": "Core solidity smart contracts for Randamu's on-chain timelock encryption",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "0.0.5",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run build:forge && npm run build:hardhat",
"build:forge": "FOUNDRY_PROFILE=build forge install && FOUNDRY_PROFILE=build forge build",
"build:hardhat": "npx hardhat compile",
"test": "npm run test:forge && npm run test:hardhat",
"test:forge": "FOUNDRY_PROFILE=test forge test",
"test:hardhat": "npx hardhat test",
"clean": "npx hardhat clean && forge clean",
"lint": "npm run lint:forge && npm run lint:hardhat",
"lint:forge": "forge fmt --check",
"lint:hardhat": "prettier --check test/hardhat",
"lint:fix": "npm run lint:forge:fix && npm run lint:hardhat:fix",
"lint:forge:fix": "forge fmt",
"lint:hardhat:fix": "prettier --write test/hardhat"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@noble/curves": "^1.6.0",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chai": "4",
"@types/commander": "^2.12.2",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"asn1js": "^3.0.5",
"axios": "^1.7.7",
"chai": "4",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.17",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "^3.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"mcl-wasm": "^1.5.0",
"p-queue": "^8.0.1",
"prettier": "^3.3.3",
"solidity-coverage": "^0.8.12",
"solidity-create2-deployer": "^0.4.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.0",
"typescript": "^5.5.4",
"typescript-bignumber": "^1.1.0"
},
"lint-staged": {
"*.sol": "forge fmt",
"*.js": "npm run prettier",
"*.ts": "npm run prettier",
"*.json": "npm run prettier",
"*.yml": "npm run prettier"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 120,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"author": "najienka",
"repository": {
"type": "git",
"url": "https://github.com/randa-mu/blocklock-solidity.git"
},
"bugs": {
"url": "https://github.com/randa-mu/blocklock-solidity/issues"
},
"homepage": "https://github.com/randa-mu/blocklock-solidity#readme",
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.1",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.1",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"ethers": "^6.13.3",
"prettier-plugin-solidity": "^1.3.1"
}
}