-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
62 lines (62 loc) · 2.08 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
{
"name": "turbo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/AugurProject/turbo",
"license": "MIT",
"scripts": {
"build": "yarn smart build && yarn comps transpile && tsc -b",
"build:clean": "tsc -b --clean",
"build:ts": "tsc -b",
"clean": "git clean -e .idea -xdf",
"rebuild": "yarn clean && yarn && yarn build",
"test": "yarn smart test",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"format": "prettier -c '**/**.ts' '**/contracts/**/*.sol'",
"format:write": "prettier --write '**/**.ts' '**/contracts/**/*.sol'",
"format:ts": "prettier -c '**/**.ts'",
"format:ts:write": "prettier --write '**/**.ts'",
"smart": "yarn --silent workspace @augurproject/smart",
"comps": "yarn --silent workspace @augurproject/comps",
"simp": "yarn --silent workspace @augurproject/simplified",
"sport": "yarn --silent workspace @augurproject/sport",
"bet": "yarn simp",
"subgraph": "yarn --silent workspace @augurproject/subgraph",
"hardhat": "yarn --silent smart hardhat"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true,
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-promise": "^4.3.1",
"lerna": "^4.0.0",
"prettier": "2.2.1",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@augurproject/artifacts": "^2.2.0",
"@chainlink/contracts": "^0.1.6",
"async-file": "^2.0.2"
},
"resolutions": {
"**/puppeteer": "https://github.com/AugurProject/blackhole.git",
"**/scrypt": "https://github.com/AugurProject/blackhole.git",
"**/bcrypto": "https://github.com/AugurProject/blackhole.git",
"**/pull-ws": "https://github.com/pull-stream/pull-ws.git"
}
}