forked from AugurProject/augur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 6.96 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@augurproject/core",
"version": "2.0.0-0",
"description": "Core augur contracts and deployment process",
"author": "The Augur Developers <team@augur.net>",
"repository": "http://github.com/AugurProject/augur-core",
"main": "build",
"browser": "build/browser.js",
"license": "GPL-3.0",
"scripts": {
"lint": "solium --dir source --reporter=gcc",
"build:source": "tsc -b",
"build:contracts": "npm run build:flattener && . venv/bin/activate && node -r ts-node/register source/deployment/compileContracts.ts && npm run build:documentation",
"build:interfaces": "npm run build:flattener && . venv/bin/activate && node -r ts-node/register source/tools/generateContractInterfaces.ts",
"build:flattener": "sh source/tools/installSolidityFlattener",
"build": "npm run build:source && npm run lint && npm run build:contracts && npm run build:interfaces && npm run build:source && npm run build:artifacts",
"build:debug": "npm run build:source && npm run lint && cross-env ENABLE_SOLIDITY_DEBUG=true npm run build:interfaces && npm run build:source",
"build:artifacts": "cross-env OUTPUT_PATH='../augur-artifacts/src' npm run build:contracts",
"build:documentation": "yarn solidity-docgen -s ./output/contracts/contracts_full.json -c ./source/contracts -o ../../docs/v2/docs/contracts",
"preversion": "npm run build",
"version": "git add source/libraries/ContractInterfaces.ts",
"release": "npm version prerelease && npm publish",
"test:unit": "python3 -m pytest -vv",
"test:unit:all": "python3 -m pytest tests -vv",
"test:integration": "jest --detectOpenHandles --verbose=true",
"deploy:net": "bash ./source/support/deploy/run.sh direct",
"deploy:aura": "npm run deploy:net -- aura",
"deploy:clique": "npm run deploy:net -- clique",
"deploy:rinkeby": "npm run deploy:net -- rinkeby",
"deploy:ropsten": "npm run deploy:net -- ropsten",
"deploy:foundation": "npm run deploy:net -- foundation",
"deploy": "npm run deploy:net -- aura clique rinkeby",
"docker:build": "docker build --cache-from augurproject/augur-core:monorepo --tag augurproject/augur-core:monorepo -f ./source/support/Dockerfile ./../..",
"docker:push": "docker push augurproject/augur-core:monorepo",
"docker:run:npm": "docker run --rm augurproject/augur-core:monorepo",
"docker:run:shell": "docker run --rm -it --entrypoint=bash augurproject/augur-core:monorepo",
"docker:run:test:integration:geth": "docker-compose -f ./source/support/test/integration/docker-compose-geth.yml up --abort-on-container-exit",
"docker:run:test:integration:parity": "docker-compose -f ./source/support/test/integration/docker-compose-parity.yml up --abort-on-container-exit",
"docker:run:test:unit": "npm run docker:run:npm -- run test:unit",
"docker:run:test:unit:all": "npm run docker:run:npm -- run test:unit:all",
"docker:run:test:security:mythril": "docker run -v `pwd`:/augur-core --workdir /augur-core/source/contracts cryptomental/augur-mythril-ci python /scripts/processor.py",
"docker:run:test:security:maian": "docker-compose -f ./source/support/test/integration/docker-compose-geth.yml up --abort-on-container-exit && docker cp integration_geth-integration-tests_1:/augur/packages/augur-core/output/contracts/ contracts/ && docker run -v `pwd`/contracts:/augur/packages/augur-core/output/contracts/ cryptomental/maian-augur-ci python /scripts/test_runner.py",
"docker:run:test:security:smt": "docker build --tag augurproject/augur-core-smt:latest -f ./source/support/test/smt/Dockerfile .",
"docker:run:test:security:oyente": "docker build --tag augurproject/augur-core-oyente:latest -f ./source/support/test/oyente/Dockerfile .",
"docker:run:test:geth": "npm run docker:run:test:unit:all && npm run docker:run:test:integration:geth",
"docker:run:test:parity": "npm run docker:run:test:unit:all && npm run docker:run:test:integration:parity",
"docker:run:deploy:net": "bash support/deploy/run.sh docker",
"docker:run:deploy:rinkeby": "npm run docker:run:deploy:net -- rinkeby",
"docker:run:deploy:ropsten": "npm run docker:run:deploy:net -- ropsten",
"docker:run:deploy:foundation": "npm run docker:run:deploy:net -- foundation",
"docker:run:deploy": "npm run docker:run:deploy:net -- aura clique rinkeby",
"docker:npm": "npm run docker:build && npm run docker:run:npm",
"docker:shell": "npm run docker:build && npm run docker:run:shell",
"docker:test": "npm run docker:build && npm run docker:run:test:geth",
"docker:test:geth": "npm run docker:build && npm run docker:run:test:geth",
"docker:test:parity": "npm run docker:build && npm run docker:run:test:parity",
"docker:test:unit": "npm run docker:build && npm run docker:run:test:unit",
"docker:test:unit:all": "npm run docker:build && npm run docker:run:test:unit:all",
"docker:deploy:net": "npm run docker:build && npm run docker:run:deploy:net",
"docker:deploy:aura": "npm run docker:deploy:net -- aura",
"docker:deploy:clique": "npm run docker:deploy:net -- clique",
"docker:deploy:rinkeby": "npm run docker:deploy:net -- rinkeby",
"docker:deploy:ropsten": "npm run docker:deploy:net -- ropsten",
"docker:deploy:foundation": "npm run docker:deploy:net -- foundation",
"docker:deploy": "npm run docker:deploy:net -- aura clique rinkeby"
},
"dependencies": {
"@augurproject/artifacts": "1.0.0-0",
"@augurproject/solidity-docgen": "0.2.0-alpha.2",
"@types/get-port": "4.0.1",
"@types/mkdirp": "0.5.2",
"async-mkdirp": "1.2.7",
"async-parallel": "1.2.3",
"bignumber.js": "6.0.0",
"binascii": "0.0.2",
"bn.js": "4.11.8",
"contract-dependencies-ethers": "1.0.0-0",
"copy-dir": "0.4.0",
"crypto-promise": "2.1.0",
"ethers": "4.0.24",
"get-port": "4.1.0",
"js-sha3": "0.8.0",
"path": "0.12.7",
"recursive-readdir": "2.2.2",
"replace": "1.0.0",
"rimraf": "2.6.2",
"solidity-coverage": "0.5.11"
},
"devDependencies": {
"@augurproject/solidity-typescript-generator": "1.1.5",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/plugin-transform-typescript": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.2.0",
"@types/chai": "4.1.7",
"@types/jest": "23.3.14",
"@types/node": "10.12.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"child_process": "1.0.2",
"cross-env": "5.2.0",
"jest": "23.6.0",
"options-parser": "0.4.0",
"solc": "0.5.1",
"solium": "1.2.3",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"typescript": "3.4.3",
"util": "0.11.1"
}
}