forked from Synthetixio/synthetix
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 3.45 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
{
"name": "synthetix",
"version": "2.20.0",
"license": "MIT",
"author": "Synthetix",
"description": "The smart contracts which make up the Synthetix system. (synthetix.io)",
"scripts": {
"all": "yarn clean && yarn build && yarn test",
"all:ovm": "yarn clean && yarn build:ovm && yarn test:ovm",
"build": "truffle compile",
"build:ovm": "truffle compile --config truffle-config-ovm.js",
"clean": "rimraf build",
"clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install",
"coverage": "solidity-coverage",
"format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\"",
"ganache": "ganache-cli -e 1000000000000 -l 8000000 -t 2019-03-06T00:00:00",
"ganache:int": "npm run ganache -- --acctKeys keys.json",
"lint": "solhint \"contracts/**/*.sol\" && eslint \"**/*.js\"",
"lint:fix": "eslint --fix \"**/*.js\"",
"test": "concurrently --kill-others --success first \"npm run ganache > /dev/null\" \"npm run test:core -- ${TRUFFLE_TEST:=test/contracts/*}\"",
"test:core": "wait-port 8545 && truffle compile && truffle test",
"test:publish": "concurrently --kill-others --success first \"npm run ganache:int > /dev/null\" \"wait-port 8545 && mocha test/publish\"",
"test:deployments": "mocha test/deployments -- --timeout 15000",
"test:testnet": "node test/testnet",
"test:local": "concurrently --kill-others --success first \"npm run ganache:int > /dev/null\" \"wait-port 8545 && node test/testnet --network local --yes\"",
"test:ovm": "truffle test ./test/contracts/*.js --config truffle-config-ovm.js",
"truffle": "truffle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/K-Ho/synthetix.git"
},
"keywords": [
"Synthetix",
"Solidity",
"Truffle",
"OVM"
],
"engines": {
"node": ">=8.10.0"
},
"files": [
"index.js",
"bin.js",
"publish/deployed/*/synths.json",
"publish/deployed/*/deployment.json"
],
"bin": {
"snx": "bin.js"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/K-Ho/synthetix/issues"
},
"homepage": "https://synthetix.io",
"directories": {
"test": "test"
},
"devDependencies": {
"@codechecks/client": "0.1.10",
"abi-decoder": "2.3.0",
"axios": "^0.18.0",
"bip39": "^2.5.0",
"bn.js": "4.11.8",
"chalk": "^2.4.2",
"concurrently": "4.1.0",
"dotenv": "^6.1.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-havven": "^1.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "0.2.12",
"@eth-optimism/ovm-truffle-provider-wrapper": "^0.0.1-alpha.25",
"@eth-optimism/rollup-full-node": "^0.0.1-alpha.25",
"@eth-optimism/solc-transpiler": "~0.0.1-alpha.25",
"ganache-cli": "6.9.1",
"glob": "^7.1.3",
"mkdirp": "^0.5.1",
"mocha": "6.2.2",
"prettier": "^1.14.2",
"prettier-plugin-solidity": "~1.0.0-alpha.37",
"rimraf": "^2.6.3",
"seedrandom": "^2.4.4",
"solc": "0.5.16",
"solhint": "^2.3.0",
"solidifier": "^2.0.0",
"solidity-coverage": "0.6.7",
"solium": "1.1.8",
"table": "^5.0.2",
"truffle": "^5.1.15",
"truffle-hdwallet-provider": "^1.0.17",
"typedarray-to-buffer": "^3.1.5",
"wait-port": "^0.2.2",
"web3": "1.2.4"
},
"dependencies": {
"chainlink": "0.7.10",
"commander": "^2.19.0",
"openzeppelin-solidity": "2.3.0",
"pretty-error": "^2.1.1",
"web3-utils": "1.2.2"
}
}