-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "1.17.3",
"node": "10.15.3"
},
"scripts": {
"build": "lerna run build",
"clean": "git clean -Xdf --exclude=\"!.env\"",
"clean:dry": "git clean -Xdn --exclude=\"!.env\"",
"test": "lerna run --stream --concurrency 1 test",
"lint": "lerna run lint --parallel --no-bail",
"lint:fix": "lerna run lint:fix --parallel --no-bail",
"start": "lerna run start --parallel --ignore=**/playground",
"start:dapps": "lerna run start --parallel --scope=**/dapp-high-roller --scope=**/dapp-tic-tac-toe",
"start:bots": "lerna run start --parallel --scope=**/high-roller-bot --scope=**/tic-tac-toe-bot",
"publish": "lerna publish --yes from-package patch"
},
"keywords": [
"ethereum",
"counterfactual",
"state channels"
],
"devDependencies": {
"lerna": "3.16.4",
"patch-package": "6.1.2",
"postinstall-postinstall": "2.0.0",
"prettier": "1.18.2",
"tslint": "5.18.0",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.5.3"
},
"resolutions": {
"**/tslint-microsoft-contrib": "^6.0.0"
}
}