-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.56 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@luminabridge/client",
"description": "core smart contracts for standard protocol v2",
"license": "BUSL-1.1",
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"homepage": "https://standardweb3.com",
"keywords": [
"standard",
"core",
"v2"
],
"repository": {
"type": "git",
"url": "https://github.com/Uniswap/uniswap-v3-core"
},
"files": [
"contracts/sabt",
"contracts/safex"
],
"scripts": {
"create-local": "graph create --node http://127.0.0.1:8020 nft-auction",
"deploy-local": "cd new-order-contracts && graph deploy --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020 nft-auction",
"hardhat-local": "hardhat node --hostname 0.0.0.0",
"build": "hardhat compile",
"console": "hardhat console",
"fork": "hardhat node --fork ",
"remix": "npx remixd -s ./ --remix-ide https://remix.ethereum.org",
"prettier": "prettier --write 'test/**/*.{js,ts}' && prettier --write contracts/**/*.sol",
"lint": "yarn prettier && solhint -c .solhint.json contracts/**/*.sol",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"test:trace": "yarn test --logs",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" CODE_COVERAGE=true hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"commit": "commit-wizard"
},
"lint-staged": {
"*.ts": [
"prettier --write"
],
"*.sol": [
"prettier --write"
],
"*.md": "prettier --write"
},
"author": "Hyungsuk Kang <[email protected]>",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^1.13.0",
"@remix-project/remixd": "^0.5.1",
"@tenderly/hardhat-tenderly": "^1.3.0",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.0.0",
"@types/inquirer": "^9.0.2",
"@types/mocha": "^8.0.0",
"@types/node": "^16.0.0",
"base64-sol": "^1.1.0",
"chai": "^4.0.0",
"cross-env": "^7.0.0",
"dotenv": "^10.0.0",
"eip-712": "^0.4.3",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.7.2",
"hardhat": "2.8.0",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.8.10",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-interface-generator": "^0.0.6",
"hardhat-log-remover": "^2.0.0",
"hardhat-preprocessor": "^0.1.0",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-tracer": "^1.0.0-alpha.6",
"hardhat-watcher": "^2.0.0",
"husky": "^7.0.0",
"inquirer": "^8.1.5",
"lint-staged": "^11.0.1",
"pre-git": "^3.17.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"tenderly": "^0.0.2",
"ts-generator": "^0.1.0",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@foundry-rs/hardhat-forge": "^0.1.17",
"solidity-docgen": "^0.6.0-beta.35"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}