-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
105 lines (105 loc) · 3.78 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
{
"name": "augur",
"private": true,
"version": "10.0.0-0",
"description": "Augur Top-Level Monorepo",
"author": "The Augur Developers <[email protected]>",
"engines": {
"node": ">=10",
"yarn": ">=1.6.0"
},
"scripts": {
"build": "tsc -b",
"build:clean": "tsc -b --clean",
"build:watch": "tsc -b -w",
"build:release": "tsc -b tsconfig.release.json",
"build:ci-docker": "docker build . -t augurproject/gitlab-ci-base-node:latest",
"bump": "lerna version --no-commit-hooks --no-git-tag-version --exact prerelease",
"clean": "git clean -e .idea -xdf",
"rebuild": "git clean -e .idea -xdf && yarn && yarn build",
"test": "jest",
"test:watch": "jest --watch",
"docker:build:all": "bash ./scripts/docker-build-all.sh",
"docker:build:augur-core": "yarn workspace @augurproject/core docker:build && yarn workspace @augurproject/core artifacts",
"docker:build:augur": "docker build -f support/Dockerfile --cache-from augurproject/augur-build:latest -t augurproject/augur-build:latest .",
"docker:build:pops": "yarn workspace @augurproject/tools docker:build",
"docker:build:clean": "docker system prune",
"docker:geth:pop": "yarn workspace @augurproject/tools docker:geth:pop",
"docker:pull": "yarn workspace @augurproject/tools docker:pull",
"docker:geth:pop-15": "yarn workspace @augurproject/tools docker:geth:pop-15",
"docker:geth:pop-normal-time": "yarn workspace @augurproject/tools docker:geth:pop-normal-time",
"docker:geth": "yarn workspace @augurproject/tools docker:geth",
"docker:all": "yarn workspace @augurproject/tools --silent flash docker-all",
"sdk": "yarn workspace @augurproject/sdk",
"tools": "yarn workspace @augurproject/tools",
"ui": "yarn workspace @augurproject/ui",
"an": "yarn workspace @augurproject/node",
"flash": "yarn workspace @augurproject/tools --silent flash",
"flash-util": "yarn workspace @augurproject/tools --silent flash --network none",
"check": "gts check",
"fix": "gts fix"
},
"devDependencies": {
"@types/async": "3.0.1",
"@types/bn.js": "4.11.5",
"@types/chai": "4.2.3",
"@types/chai-as-promised": "7.1.2",
"@types/express": "4.17.1",
"@types/helmet": "0.0.44",
"@types/jest": "24.0.18",
"@types/lodash": "4.14.138",
"@types/md5-file": "4.0.0",
"@types/uuid": "3.4.5",
"@types/web3": "1.0.19",
"@types/ws": "6.0.3",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "3.6.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.14.3",
"execa": "1.0.0",
"gts": "1.1.0",
"jest": "24.9.0",
"jest-junit": "8.0.0",
"lerna": "3.22.1",
"listr": "0.14.3",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"rxjs-compat": "6.5.3",
"ts-jest": "24.0.2",
"ts-node": "9.0.0",
"typescript": "3.9.7",
"uglifyjs-webpack-plugin": "1.3.0",
"url-loader": "2.1.0",
"webpack": "4.42.1",
"webpack-dev-middleware": "3.7.1",
"webpack-dev-server": "3.8.1",
"webpack-hot-middleware": "2.25.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@augurproject/ui/react-dates",
"@augurproject/ui/normalize.css"
]
},
"resolutions": {
"**/sha3": "2.0.1",
"**/leveldown": "5.4.1",
"**/bignumber.js": "9.0.0",
"**/puppeteer": "https://github.com/AugurProject/blackhole.git",
"**/scrypt": "https://github.com/AugurProject/blackhole.git",
"**/pull-ws": "https://github.com/pull-stream/pull-ws.git",
"ethers": "4.0.47",
"lodash": "4.17.15"
},
"dependencies": {
"docusaurus-init": "1.12.0"
}
}