-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 3.39 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
{
"name": "nft-marketplace",
"version": "1.0.0",
"description": "NFT Marketplace",
"scripts": {
"prepare": "husky install",
"format": "prettier --write \"plugins/**/*.ts\" \"scripts/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint --fix \"{plugins,scripts,test}/**/*.ts\"",
"test": "hardhat test",
"test:cover": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"pretest:fuzz": "docker pull trailofbits/eth-security-toolbox",
"test:fuzz": "docker run --rm -v $INIT_CWD:/share --entrypoint '' -w /share trailofbits/eth-security-toolbox echidna-test . --config echidna.config.yaml --contract TestMarketplace",
"preanalyze:mythril": "docker pull mythril/myth",
"analyze:mythril": "docker run --rm -v $INIT_CWD:/share -w /share mythril/myth analyze contracts/Marketplace.sol --solc-json solc.json",
"preanalyze:slither": "docker pull trailofbits/eth-security-toolbox",
"analyze:slither": "docker run --rm -v $INIT_CWD:/share --entrypoint '' -w /share trailofbits/eth-security-toolbox slither . --config-file slither.config.json",
"clean": "hardhat clean && rm -rf coverage crytic-corpus crytic-export",
"flatten": "hardhat flatten contracts/Marketplace.sol > artifacts/Marketplace-flattened.sol",
"compile": "hardhat compile",
"node": "hardhat node",
"console:node": "hardhat console",
"console:crytic": "docker run --rm -it -v $INIT_CWD:/share -w /share trailofbits/eth-security-toolbox",
"deploy:hardhat": "hardhat run --network hardhat scripts/deploy-marketplace.ts",
"deploy:localhost": "hardhat run --network localhost scripts/deploy-marketplace.ts",
"deploy:eth-goerli": "hardhat run --network ethereumGoerli scripts/deploy-marketplace.ts",
"deploy:opt-goerli": "hardhat run --network optimismGoerli scripts/deploy-marketplace.ts",
"deploy:pol-mumbai": "hardhat run --network polygonMumbai scripts/deploy-marketplace.ts",
"verify:eth-goerli": "hardhat run --network ethereumGoerli scripts/verify-marketplace.ts",
"verify:pol-mumbai": "hardhat run --network polygonMumbai scripts/verify-marketplace.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evercoinx/nft-marketplace.git"
},
"keywords": [
"marketplace",
"nft"
],
"author": "Serge Grigorenko <[email protected]>",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/evercoinx/nft-marketplace/issues"
},
"homepage": "https://github.com/evercoinx/nft-marketplace#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.7.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"joi": "^17.6.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
}
}