-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
{
"name": "@secure-ci/core",
"description": "Smart contracts for the Secure Contract Interaction protocol",
"version": "0.0.13",
"license": "AGPL-3.0",
"files": [
"./contracts/**/*.sol",
"./artifacts/**/*.json",
"./dist/types/**",
"deployments.json",
"README.md",
"LICENSE.txt"
],
"main": "dist/types/index.js",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"sci"
],
"homepage": "https://sci.domains/",
"scripts": {
"prepublish": "pnpm build; pnpm lint; pnpm test:cov; ",
"build": "pnpm compile; tsc",
"compile": "hardhat compile",
"node": "hardhat node",
"clean": "rm -r artifacts cache types dist",
"test": "hardhat test",
"test:cov": "hardhat coverage",
"lint": "hardhat check; lint --fix .; prettier --write .",
"dev": "pnpm setup:localhost; pnpm deploy:localhost",
"setup:localhost": "hardhat run scripts/setup-localhost.ts --network localhost",
"deploy": "hardhat ignition deploy ignition/modules/ProtocolModule.ts",
"save:deployments": "hardhat run scripts/build-deployment-address.ts",
"deploy:sepolia": "pnpm run deploy --verify --network sepolia --parameters ignition/parameters/sepolia.json5",
"deploy:localhost": "pnpm run deploy --network localhost --parameters ignition/parameters/sepolia.json5",
"prepare:package": "pnpm clean; pnpm build; pnpm save:deployments"
},
"engines": {
"node": ">=20",
"pnpm": "9"
},
"dependencies": {
"@ensdomains/ens-contracts": "1.2.2",
"@openzeppelin/contracts": "5.1.0",
"@openzeppelin/contracts-upgradeable": "5.1.0",
"ethers": "6.13.4"
},
"devDependencies": {
"@ensdomains/ensjs": "4.0.1-alpha.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "0.15.7",
"@nomicfoundation/hardhat-ledger": "1.0.3",
"@nomicfoundation/hardhat-toolbox": "5.0.0",
"@nomicfoundation/ignition-core": "0.15.7",
"@nomiclabs/hardhat-solhint": "4.0.1",
"@openzeppelin/hardhat-upgrades": "3.5.0",
"@openzeppelin/upgrades-core": "1.40.0",
"@safe-global/api-kit": "2.5.3",
"@safe-global/protocol-kit": "5.0.3",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.7",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "10.0.9",
"@types/node": "22.8.0",
"chai": "4.3.7",
"dotenv": "16.4.5",
"fs-extra": "11.2.0",
"hardhat": "2.22.15",
"hardhat-gas-reporter": "2.2.1",
"prettier": "3.3.3",
"prettier-plugin-solidity": "1.4.1",
"solhint": "5.0.3",
"solhint-plugin-prettier": "0.1.0",
"solidity-coverage": "0.8.13",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typescript": "5.6.3"
}
}