forked from livepeer/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.64 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
{
"private": true,
"name": "livepeer.studio",
"version": "0.0.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/livepeer/studio.git"
},
"bugs": "https://github.com/livepeer/studio/issues",
"homepage": "https://livepeer.studio",
"scripts": {
"build": "lerna run --stream --no-sort --concurrency=999 build",
"start": "lerna run --stream --no-sort --concurrency=999 start",
"clean": "lerna clean --yes && rm -rf node_modules",
"cz": "git-cz",
"coverage": "lerna run coverage --ignore @livepeer.studio/www && mkdir -p coverage && lcov-result-merger 'packages/*/coverage/lcov.info' ./coverage/lcov.info",
"depcheck": "lerna exec --no-sort --concurrency=1 --stream 'depcheck --specials=bin --ignores='babel-*' .'",
"prepare": "run-s prettier:check prepare:lerna",
"prepare:lerna": "lerna run prepare --stream --ignore @livepeer.studio/www && lerna run build --stream",
"lerna-run": "lerna run --stream",
"release:dry-run": "lerna publish --exact --skip-git --skip-npm --cd-version prerelease --conventional-commits --yes",
"release:alpha": "lerna publish --exact --cd-version prerelease --conventional-commits",
"test": "lerna run --stream test --no-sort --concurrency=999 --ignore @livepeer.studio/www --",
"dev": "touch .env.local && cp .env.local packages/www && lerna run --stream --no-sort --concurrency=999 dev",
"updated": "lerna updated --json",
"postinstall": "lerna run --stream postinstall",
"prettier:base": "prettier '**/*.{ts,js,css,html,md,tsx,mdx,yaml,yml}'",
"prettier": "yarn run prettier:base --write",
"prettier:check": "yarn run prettier:base --check",
"release": "lerna version",
"pkg": "lerna run --stream build && lerna run --stream pkg",
"pkg:local": "lerna run --stream build && lerna run --stream pkg:local"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@livepeer/prettier-config": "^1.0.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^2.1.0",
"depcheck": "^1.4.3",
"flow-bin": "^0.97.0",
"husky": "^4.2.5",
"lcov-result-merger": "^3.0.0",
"lerna": "^7.2.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.0",
"vercel": "^19.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"cross-env": "^5.2.0",
"lint-staged": "^10.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,html,md,tsx,mdx,yaml,yml}": "prettier --write"
}
}