-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
66 lines (66 loc) · 2.53 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
{
"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": "simple-git-hooks && yarn run prepare:lerna",
"prepare:lerna": "lerna run prepare --stream --ignore @livepeer.studio/www",
"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": "cd packages/api && yarn run test",
"compile-schemas": "cd packages/api && yarn run compile-schemas",
"pull-ai-schema": "cd packages/api && yarn run pull-ai-schema",
"dev": "touch .env.local && cp .env.local packages/www && lerna run --stream --no-sort --concurrency=999 dev",
"updated": "lerna updated --json",
"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",
"esbuild": "cd packages/www && yarn run static && cd ../api && yarn run esbuild"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@livepeer/prettier-config": "^1.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.3",
"lcov-result-merger": "^5.0.1",
"lerna": "^8.1.3",
"prettier": "^3.3.2",
"simple-git-hooks": "^2.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"cross-env": "^7.0.3",
"lint-staged": "^15.2.5"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{ts,js,css,html,md,tsx,mdx,yaml,yml}": "prettier --write"
}
}