-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.26 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
{
"name": "@nayms/contracts",
"version": "3.9.2",
"main": "index.js",
"repository": "https://github.com/nayms/contracts-v3.git",
"author": "Kevin Park <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"gemforge.deployments.json",
"src/generated/abi.json",
"src/generated/naymsDiamond.json",
"forge-artifacts/LibConstants.sol/LibConstants.json",
"forge-artifacts/IERC20.sol/IERC20.json",
"forge-artifacts/IERC1271.sol/IERC1271.json"
],
"scripts": {
"prettier": "yarn prettier:test && yarn prettier:src && yarn prettier:script",
"prettier:test": "prettier --write 'test/**/*.sol'",
"prettier:src": "prettier --write 'src/**/*.sol'",
"prettier:script": "prettier --write 'src/**/*.sol'",
"prettier:list": "prettier --list-different 'src/**/*.sol'",
"prettier:check": "prettier --check 'src/**/*.sol'",
"solhint": "yarn run solhint:test && yarn run solhint:src",
"solhint:test": "solhint --config .solhint.json 'test/**/*.sol' --fix",
"solhint:src": "solhint --config .solhint.json 'src/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"lint": "yarn prettier && yarn run solhint",
"lint:check": "yarn prettier:check && yarn run solhint:check",
"docgen": "rm -rf docs/facets/*Facet.md && node cli-tools/docgen.js",
"anvil": "anvil --host 0.0.0.0 --chain-id 31337 --accounts 30 -m ./nayms_mnemonic.txt",
"build": "gemforge build",
"deploy": "./script/gemforge/deploy.js",
"query": "gemforge query",
"test": "forge test --no-match-test testReplaceDiamondCut"
},
"devDependencies": {
"chalk": "4",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"ethers": "^5.6.9",
"gemforge": "^2.9.1",
"glob": "^8.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "0.8.20",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"solidity-docgen": "^0.5.17"
},
"dependencies": {
"yarn": "^1.22.19"
}
}