This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
80 lines (80 loc) · 3.07 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
{
"private": true,
"name": "livepeerjs",
"version": "1.0.0-alpha.3",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/livepeer/livepeerjs.git"
},
"bugs": "https://github.com/livepeer/livepeerjs/issues",
"homepage": "https://livepeer.org",
"scripts": {
"build": "lerna run build --stream --concurrency=1",
"clean": "lerna clean --yes && rm -rf node_modules",
"coverage": "lerna run coverage --ignore @livepeer/explorer-2.0 --ignore @livepeer/player && mkdir -p coverage && lcov-result-merger 'packages/*/coverage/lcov.info' ./coverage/lcov.info",
"cz": "git-cz",
"depcheck": "lerna exec --no-sort --concurrency=1 --stream 'depcheck --specials=bin --ignores='babel-*' .'",
"dev": "lerna run --stream --no-sort --concurrency=999 dev",
"lerna-run": "lerna run --stream",
"lint-eslint": "eslint . --ext js,jsx,ts,tsx --max-warnings=0",
"lint-fix": "yarn prettier-fix && eslint . --ext js,jsx,ts,tsx --fix --max-warnings=0",
"lint": "run-p prettier-check lint-eslint",
"postinstall": "lerna run --stream postinstall",
"prepare": "lerna run prepare --stream --ignore @livepeer/explorer-2.0 --ignore @livepeer/player && lerna run build --stream --ignore @livepeer/explorer-2.0 --ignore @livepeer/player",
"prettier-fix": "prettier --write '**/*.{ts,js,css,html,md,tsx,mdx,graphql,gql}'",
"prettier-check": "prettier --check '**/*.{ts,js,css,html,md,tsx,mdx,graphql,gql}'",
"release:alpha": "lerna publish --exact --cd-version prerelease --conventional-commits",
"release:dry-run": "lerna publish --exact --skip-git --skip-npm --cd-version prerelease --conventional-commits --yes",
"test": "lerna run --stream test --no-sort --concurrency=999 --ignore @livepeer/explorer-2.0 --ignore @livepeer/player --ignore @livepeer/chroma",
"updated": "lerna updated --json"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@livepeer/prettier-config": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"depcheck": "^0.7.1",
"eslint": "^7.20.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lcov-result-merger": "^3.0.0",
"lerna": "^3.13.3",
"lint-staged": "^10.1.7",
"npm-run-all": "4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,html,md,tsx,mdx,gql,graphql}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"muport-did-resolver": "1.0.1",
"pull-ws": "3.3.2",
"recharts-scale": "0.4.3"
}
}