This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
89 lines (89 loc) · 2.71 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
{
"name": "@dydxprotocol/protocol",
"version": "1.1.0",
"description": "Ethereum Smart Contracts for the dYdX Margin Trading Protocol",
"main": "dist/index.js",
"files": [
"dist/",
"build/",
"contracts/",
"src/",
"truffle.js",
"LICENSE",
"README.md",
".babelrc"
],
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test",
"util": "util"
},
"scripts": {
"test": "NODE_ENV=test truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"develop": "truffle develop",
"console": "truffle console",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"solint": "solium -d contracts/",
"coverage": "./node_modules/.bin/solidity-coverage",
"deploycosts": "truffle test util/DeployGasCosts.js",
"node": "ganache-cli",
"debug": "truffle debug",
"dydxlint": "python util/lintcontracts.py && python util/linttests.py",
"build:js": "./node_modules/.bin/babel src --out-dir dist --source-maps inline",
"docker_node": "ganache-cli -i 1212 -d -p 8545 -h 0.0.0.0 --db=/home/.ganache",
"clean_contract_json": "babel-node ./scripts/clean-build.js",
"deploy": "truffle migrate --network=$NETWORK --reset && babel-node ./scripts/save-deployed-addresses.js",
"deploy_kovan": "NETWORK=kovan npm run deploy",
"deploy_mainnet": "NETWORK=mainnet npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/dydxprotocol/protocol"
},
"keywords": [
"dydx",
"ethereum"
],
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/protocol/issues"
},
"homepage": "https://github.com/dydxprotocol/protocol#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"bignumber.js": "^4.1.0",
"openzeppelin-solidity": "1.12.0"
},
"devDependencies": {
"0x.js": "^0.37.2",
"@0xproject/migrations": "^1.0.7",
"@0xproject/order-utils": "^1.0.1",
"@digix/tempo": "^0.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"canonical-weth": "^1.1.0",
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"es6-promisify": "^5.0.0",
"eslint": "^4.19.1",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "^6.1.8",
"mocha-junit-reporter": "^1.18.0",
"request-promise-native": "^1.0.5",
"solidity-coverage": "0.5.11",
"solium": "1.1.8",
"truffle": "4.1.14",
"truffle-contract": "^3.0.6",
"web3": "1.0.0-beta.35",
"websocket": "1.0.26"
}
}