-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.6 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
{
"name": "tsb-contracts",
"version": "0.0.1",
"description": "smart contracts for the sandbox",
"license": "UNLICENSED",
"files": [
"deployments/mainnet",
"deployments/rinkeby"
],
"keywords": [
"ethereum",
"smart-contracts",
"The Sandbox"
],
"resolutions": {
"websocket": "1.0.32"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@ethereum-waffle/chai": "^3.0.2",
"@ethersproject/wallet": "^5.0.5",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"@openzeppelin/contracts-0.6": "npm:@openzeppelin/contracts@latest",
"@openzeppelin/hardhat-upgrades": "^1.4.3",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.6",
"@types/mocha": "^8.0.2",
"@types/node": "^14.10.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"@urql/core": "^1.16.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-mocha": "^8.0.0",
"ethers": "^5.0.17",
"fs-extra": "^9.0.1",
"googleapis": "^66.0.0",
"graphql": "^15.4.0",
"hardhat": "^2.0.4",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-gas-reporter": "^1.0.0",
"isomorphic-unfetch": "^3.1.0",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"readline": "^1.3.0",
"solhint": "^3.3.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.10",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"scripts": {
"postinstall": "node ./.setup.js",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\" && solhint --max-warnings 0 \"src/**/*.sol\"",
"lint:fix": "eslint --fix \"**/*.{js,ts}\" && solhint --fix \"src/**/*.sol\"",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
"test": "cross-env HARDHAT_DEPLOY_FIXTURE=true HARDHAT_COMPILE=true mocha --bail --recursive test",
"test:single": "cross-env HARDHAT_COMPILE=true mocha --bail --recursive test",
"gas": "cross-env REPORT_GAS=true hardhat test",
"coverage": "cross-env HARDHAT_DEPLOY_FIXTURE=true hardhat --network coverage coverage",
"dev": "hardhat node --reset --watch --export contractsInfo.json",
"compile": "hardhat compile",
"local:dev": "hardhat --network localhost deploy --watch",
"local:deploy": "hardhat --network localhost deploy",
"local:run": "cross-env HARDHAT_NETWORK=localhost ts-node --files",
"local:export": "hardhat --network localhost export",
"void:deploy": "hardhat deploy",
"void:run": "cross-env ts-node --files",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:export": "hardhat --network rinkeby export",
"rinkeby:run": "cross-env HARDHAT_NETWORK=rinkeby ts-node --files",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:export": "hardhat --network mainnet export",
"mainnet:run": "cross-env HARDHAT_NETWORK=mainnet ts-node --files",
"mainnet:fork:run": "cross-env HARDHAT_DEPLOY_ACCOUNTS_NETWORK=mainnet HARDHAT_FORK=mainnet HARDHAT_FORK_NUMBER=11593528 ts-node --files",
"rinkeby:fork:run": "cross-env HARDHAT_DEPLOY_ACCOUNTS_NETWORK=rinkeby HARDHAT_FORK=rinkeby HARDHAT_FORK_NUMBER=7854432 ts-node --files",
"rinkeby_test:deploy": "hardhat --network rinkeby_test deploy",
"rinkeby_test:export": "hardhat --network rinkeby_test export",
"rinkeby_test:run": "cross-env HARDHAT_NETWORK=rinkeby_test ts-node --files",
"hardhat": "hardhat"
}
}