-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 2.66 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
{
"name": "@govtechsg/document-store",
"version": "1.0.0",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/Open-Attestation/document-store.git"
},
"author": "GovTech",
"license": "Apache-2.0",
"scripts": {
"build": "forge build",
"build:hh": "hardhat clean && hardhat compile --no-typechain",
"clean": "rm -rf cache out .build coverage artifacts",
"semantic-release": "semantic-release",
"lint": "npm run lint:sol && npm run prettier:check",
"lint:sol": "npx solhint {script,src,test}/**/*.sol",
"prettier:check": "npx prettier --check \"**/*.{json,md,yml,sol}\" \"!broadcast/**/*\" --ignore-path=.prettierignore",
"prettier:write": "npx prettier --write \"**/*.{json,md,yml,sol}\" \"!broadcast/**/*\" --ignore-path=.prettierignore",
"test": "forge test",
"test:coverage": "npm run clean && ./bin/coverage.sh",
"deploy": "./bin/deploy.sh ${npm_config_network:-localhost} ${npm_config_verify:-0}",
"deploy:ds": "npm run -s deploy script/DocumentStore.s.sol:DocumentStoreScript \"run(string,address)\" \"$npm_config_name\" \"$npm_config_admin\"",
"deploy:ds:impl": "npm run -s deploy script/DocumentStoreInitializable.s.sol:DocumentStoreInitializableScript",
"deploy:ds:upgradeable": "npm run -s deploy script/DocumentStoreUpgradeable.s.sol:DocumentStoreUpgradeableScript \"run(string,address)\" \"$npm_config_name\" \"$npm_config_admin\"",
"deploy:tds": "npm run -s deploy script/TransferableDocumentStore.s.sol:TransferableDocumentStoreScript \"run(string,string,address)\" \"$npm_config_name\" \"$npm_config_symbol\" \"$npm_config_admin\"",
"deploy:tds:impl": "npm run -s deploy script/TransferableDocumentStoreInitializable.s.sol:TransferableDocumentStoreInitializableScript",
"deploy:tds:upgradeable": "npm run -s deploy script/TransferableDocumentStoreUpgradeable.s.sol:TransferableDocumentStoreUpgradeableScript \"run(string,string,address)\" \"$npm_config_name\" \"$npm_config_symbol\" \"$npm_config_admin\"",
"deploy:impl:addresses": "npm run -s deploy script/ComputeInitializableAddresses.s.sol:ComputeInitializableAddresses"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@semantic-release/exec": "^6.0.3",
"ds-test": "github:dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"eslint": "^8.57.0",
"forge-std": "github:foundry-rs/forge-std#v1.7.6",
"hardhat": "^2.20.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"semantic-release": "^23.0.2",
"solhint": "^4.1.1",
"typescript": "^5.3.3"
}
}