forked from AugurProject/augur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.36 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
{
"name": "augur",
"private": true,
"version": "10.0.0-0",
"description": "Augur Top-Level Monorepo",
"author": "The Augur Developers <team@augur.net>",
"engines": {
"node": ">=8",
"yarn": ">=1.6.0"
},
"scripts": {
"build": "tsc -b",
"build:release": "tsc -b tsconfig.release.json",
"build:ci-docker": "docker build . -t augurproject/gitlab-ci-base-node:latest",
"clean": "lerna clean -y",
"test": "jest",
"test:watch": "jest --watch",
"watch": " lerna run watch --parallel",
"docker:build:all": "bash ./scripts/docker-build-all.sh",
"docker:build:augur-core": "lerna run --scope augur-core docker:build && lerna run --scope augur-core artifacts",
"docker:build:augur": "docker build -f support/Dockerfile -t augurproject/augur-build:latest .",
"docker:build:pops": "lerna run --scope augur-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",
"flash": "yarn workspace @augurproject/tools flash"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.2.0",
"@types/bn.js": "4.11.4",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@babel/plugin-transform-typescript": "7.2.0",
"@babel/preset-typescript": "7.1.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@types/knex": "0.15.1",
"@types/md5-file": "4.0.0",
"@types/async": "2.4.1",
"@types/express": "4.16.1",
"@types/helmet": "0.0.42",
"@types/lodash": "4.14.121",
"@types/sqlite3": "3.1.5",
"@types/uuid": "3.4.4",
"@types/ws": "6.0.1",
"@types/pouchdb": "6.3.3",
"@types/web3": "1.0.18",
"babel-loader": "8.0.5",
"babel-jest": "23.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint": "5.12.1",
"eslint-config-prettier": "3.3.0",
"eslint-import-resolver-babel-module": "5.0.0-beta.1",
"eslint-import-resolver-webpack": "0.11.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.2.1",
"eslint-plugin-jsx-a11y": "6.2.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"prettier": "1.15.3",
"jest": "23.6.0",
"jest-junit": "5.2.0",
"uglifyjs-webpack-plugin": "1.3.0",
"url-loader": "1.1.2",
"webpack": "4.27.1",
"webpack-dev-server": "3.1.11",
"webpack-dev-middleware": "3.4.0",
"webpack-hot-middleware": "2.24.3",
"lerna": "3.10.8",
"execa": "1.0.0",
"listr": "0.14.3",
"rxjs-compat": "6.3.3",
"ts-node": "7.0.1",
"typescript": "3.3.3",
"npm-run-all": "4.1.5"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"augur-ui/@types/expect-puppeteer",
"augur.js/uuid-parse"
]
},
"resolutions": {
"**/sha3": "2.0.1"
}
}