forked from thesandboxgame/sandbox-smart-contracts-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.04 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
{
"name": "tsb-contracts",
"version": "0.0.1",
"description": "smart contracts for the sandbox",
"license": "UNLICENSED",
"files": [
"deployments/mainnet",
"deployments/rinkeby"
],
"devDependencies": {
"@mermaid-js/mermaid-cli": "^8.5.1-2",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-solhint": "1.2.0",
"@smartdec/smartcheck": "^2.0.1",
"@urql/core": "^1.12.1",
"axios": "^0.18.0",
"base32.js": "^0.1.0",
"buidler-deploy": "^0.5.11",
"buidler-ethers-v5": "^0.2.2",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commander": "^3.0.0",
"cross-env": "^7.0.2",
"csv": "^5.3.2",
"csv-parse": "^4.10.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-mocha": "^0.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eth-sig-util": "^2.1.0",
"ethers": "^5.0.13",
"fs-extra": "^9.0.0",
"ganache-cli": "^6.9.1",
"googleapis": "^47.0.0",
"graphql": "^15.1.0",
"husky": "^4.2.5",
"js-sha256": "^0.9.0",
"minimist": "^1.2.0",
"mocha": "^7.1.1",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"prettier-plugin-solidity": "^1.0.0-alpha.48",
"solc-0.5.9": "npm:[email protected]",
"solc-0.6.5": "npm:[email protected]",
"solhint": "^2.3.1",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.4",
"solidity-docgen-wighawag": "^0.5.3",
"wait-on": "^4.0.2"
},
"scripts": {
"npm-test": "echo $npm_package_config_path",
"doc:solidity": "solidity-docgen -t docs-template -s single -x html.md -i src -o slate-docs --solc-module solc-0.6.5",
"doc:slate:setup": "node documentation/setup-slate.js",
"doc:slate:generate": "node documentation/generate-slate.js",
"prettier:solidity": "prettier --write src/**/*.sol",
"prettier:js": "prettier --write lib deploy test scripts",
"prettier": "run-s prettier:js prettier:solidity",
"compile": "buidler compile",
"test": "buidler compile && mocha --bail --recursive test",
"gas-report": "wait-on tcp:8545 && cross-env REPORT_GAS=true buidler --network localhost test",
"coverage": "buidler --network coverage coverage",
"ganache": "ganache-cli",
"smartcheck": "smartcheck -p .",
"local:deploy": "buidler --network localhost deploy",
"rinkeby:deploy": "buidler --network rinkeby deploy",
"rinkeby:test:deploy": "buidler --network rinkeby_test deploy",
"goerli:test:deploy": "buidler --network goerli_test deploy",
"mainnet:deploy": "buidler --network mainnet deploy",
"void:run": "cross-env BUIDLER_NETWORK=buidlerevm node",
"local:run": "cross-env BUIDLER_NETWORK=localhost node",
"rinkeby:run": "cross-env BUIDLER_NETWORK=rinkeby node",
"rinkeby:test:run": "cross-env BUIDLER_NETWORK=rinkeby_test node",
"mainnet:run": "cross-env BUIDLER_NETWORK=mainnet node"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@uniswap/v2-core": "^1.0.1"
}
}