forked from statechannels/statechannels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"dependencies": {
"patch-package": "6.2.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/prettier": "1.19.0",
"eslint-plugin-import": "2.22.1",
"husky": "3.0.7",
"lerna": "3.16.4",
"npm-normalize-package-bin": "1.0.1",
"postinstall-postinstall": "2.0.0",
"prettier": "2.2.1",
"typesync": "0.7.0"
},
"engines": {
"yarn": "^1.17.0",
"node": ">=12.16.0"
},
"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",
"@types/webgl2": "0.0.5"
},
"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: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": "test -n \"$SKIP_PREPARE\" || lerna run --concurrency 8 --stream prepare",
"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 --since $(git merge-base $CIRCLE_BRANCH origin/master)"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/html-minifier-terser"
]
}
}