-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.1 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.1 KB
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
{
"dependencies": {
"patch-package": "6.2.0"
},
"devDependencies": {
"@statechannels/devtools": "0.1.4",
"@types/prettier": "1.19.0",
"@types/wait-on": "4.0.0",
"husky": "3.0.7",
"lerna": "3.16.4",
"npm-normalize-package-bin": "1.0.1",
"postinstall-postinstall": "2.0.0",
"prettier": "1.19.1",
"typescript": "3.7.5",
"wait-on": "4.0.0"
},
"engines": {
"yarn": "^1.17.0",
"node": "^12.16.3"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --max-warnings=0"
}
},
"keywords": [
"ethereum",
"state channels"
],
"private": true,
"resolutions": {
"@types/react": "16.9.19",
"broccoli": "3.3.3",
"ethereum-transaction-debugger": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz",
"scrypt": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz"
},
"scripts": {
"build": "lerna run build",
"build:ci": "lerna run build:ci --stream --concurrency 2",
"build:ci:incremental": "yarn build:ci --since $(git merge-base $CIRCLE_BRANCH origin/master)",
"build:netlify": "lerna run build:netlify --stream --concurrency 2",
"build:netlify:incremental": "yarn build:netlify --since $(git merge-base $CIRCLE_BRANCH origin/master)",
"build:netlify:production": "lerna run build:netlify:production --stream --concurrency 2",
"build:typescript": "lerna run build:typescript",
"clean": "git clean -Xdf --exclude=\"!.env.*\"",
"clean:dry": "git clean -Xdn --exclude=\"!.env.*\"",
"lint:check": "lerna run lint:check --no-sort --no-bail -- --max-warnings=0",
"lint:write": "lerna run lint:write --no-sort --no-bail",
"postinstall": "patch-package",
"preinstall": "npx typesync",
"prepare": "lerna run --concurrency 8 --stream prepare",
"publish": "lerna publish --yes from-package patch",
"release:netlify": "lerna run release:netlify --stream -- --auth $NETLIFY_ACCESS_TOKEN --message $(git rev-parse --short HEAD) $([ $(git rev-parse --abbrev-ref HEAD) = master ] && echo --prod)",
"release:netlify:incremental": "lerna run release:netlify --stream --since $(git merge-base $CIRCLE_BRANCH origin/master) -- --auth $NETLIFY_ACCESS_TOKEN --message $(git rev-parse --short HEAD)",
"release:netlify:production": "lerna run release:netlify:production --stream -- --auth $NETLIFY_ACCESS_TOKEN --message $(git rev-parse --short HEAD) --prod",
"run:w3t": "lerna run start --scope=**/web3torrent",
"start-servers": "./bin/start-servers.sh",
"start:shared-ganache": "cd packages/devtools && NODE_ENV=development yarn start:shared-ganache",
"test": "lerna run test --stream --concurrency 8",
"test:ci": "lerna run test:ci --stream --no-sort --include-dependents",
"test:ci:incremental": "yarn test:ci --concurrency 3 --since $(git merge-base $CIRCLE_BRANCH origin/master)",
"test:w3t": "lerna run test --concurrency 1 --scope=**/web3torrent "
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/ethers",
"**/end-of-stream"
]
}
}