This repository has been archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
46 lines (46 loc) · 1.61 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
{
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"yarn": ">=1.17.3",
"node": "^10 || ^12"
},
"scripts": {
"build": "lerna run build --ignore @counterfactual/wallet-ui && lerna run build --scope=**/wallet-ui",
"build:ci": "lerna run build --ignore @counterfactual/wallet-ui && lerna run build --scope=**/wallet-ui",
"clean": "git clean -Xdf --exclude=\"!.env\"",
"clean:dry": "git clean -Xdn --exclude=\"!.env\"",
"test": "lerna run --stream --concurrency 1 test",
"test:e2e:setup": "./e2e-prepare.sh",
"test:e2e": "./e2e-run.sh",
"test:ci": "lerna run --ignore @counterfactual/greenboard --stream --concurrency 1 test",
"lint": "lerna run lint --parallel --no-bail",
"lint:fix": "lerna run lint:fix --parallel --no-bail",
"run:server": "lerna run start --parallel --scope=**/simple-hub-server",
"run:wallet": "lerna run start --parallel --scope=**/simple-hub-server --scope=**/wallet-ui",
"run:wallet:e2e": "lerna run start:e2e --parallel --scope=**/simple-hub-server --scope=**/wallet-ui > /tmp/hub.log",
"publish": "lerna publish --yes from-package",
"postinstall": "patch-package"
},
"keywords": [
"ethereum",
"counterfactual",
"state channels"
],
"devDependencies": {
"lerna": "3.18.3",
"patch-package": "6.2.0",
"postinstall-postinstall": "2.0.0",
"prettier": "1.18.2",
"tslint": "5.20.0",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.5.3"
},
"resolutions": {
"**/tslint-microsoft-contrib": "^6.0.0"
}
}