-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.29 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": "optrispace-contract",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"flatten": "npx hardhat flatten ./contracts/ContractFactory.sol",
"deploy-localhost": "npx hardhat run scripts/deploy.js --network localhost",
"deploy-bsc-testnet": "npx hardhat run scripts/deploy.js --network bsc-testnet",
"deploy-mumbai-testnet": "npx hardhat run scripts/deploy.js --network mumbai-testnet",
"test": "hardhat test test/*.test.js --bail",
"coverage": "npx hardhat coverage --network hardhat",
"lint": "npm run lint:es && npm run lint:js && npm run lint:sol && npx prettier --check .",
"lint:es": "npx eslint '**/*.js'",
"lint:js": "prettier test/**/*.js scripts/**/*.js --check",
"lint:sol": "solhint -f stylish contracts/**/*.sol -w 0",
"fix": "npm run fix:es && npm run fix:js && npm run fix:sol && npx prettier -w .",
"fix:es": "npx eslint '**/*.js' --fix",
"fix:js": "prettier test/**/*.js scripts/**/*.js --write",
"fix:sol": "solhint -f table --fix contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optriment/optrispace-contract.git"
},
"keywords": [
"web3",
"blockchain",
"smart contract",
"optrispace"
],
"author": "Alexander Kadyrov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/optriment/optrispace-contract/issues"
},
"homepage": "https://github.com/optriment/optrispace-contract#readme",
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2"
}
}