forked from blockprotocol/blockprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.57 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
{
"private": true,
"description": "blockprotocol monorepo",
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"infra/*",
"libs/@blockprotocol/*",
"libs/@local/*",
"libs/@local/internal-api-client-generator/typescript",
"libs/[!wordpress]*",
"blocks/*"
],
"nohoist": [
"**/@types/css-font-loading-module",
"**/@types/prismjs"
]
},
"scripts": {
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:dependency-version-consistency": "check-dependency-version-consistency --fix .",
"fix:eslint": "turbo run --continue fix:eslint",
"fix:markdownlint": "markdownlint-cli2 --fix '**/*.md' '#**/node_modules' '#**/vendor' '#**/dist' '#**/LICENSE-APACHE.md'",
"fix:prettier": "prettier --cache --write --ignore-unknown .",
"fix:yarn-deduplicate": "yarn install && yarn-deduplicate --strategy=fewer && yarn install",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:dependency-version-consistency": "check-dependency-version-consistency .",
"lint:eslint": "turbo run --continue lint:eslint",
"lint:knip": "knip --no-exit-code",
"lint:lockfile-lint": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --allowed-schemes \"https:\"",
"lint:markdownlint": "markdownlint-cli2 '**/*.md' '#**/node_modules' '#**/vendor' '#**/dist' '#**/LICENSE-APACHE.md'",
"lint:prettier": "prettier --cache --check --ignore-unknown .",
"lint:tsc": "turbo run --continue lint:tsc",
"lint:yarn-deduplicate": "yarn-deduplicate --fail --list --strategy=fewer",
"dev": "yarn workspace @apps/site dev",
"dev:seed-db": "yarn workspace @apps/site dev:seed-db",
"dev:db": "yarn workspace @apps/site dev:db",
"prepare": "patch-package --error-on-warn && turbo run codegen && turbo run build \"--filter=!./apps/*\""
},
"lint-staged": {
"**": [
"suppress-exit-code markdownlint --fix",
"suppress-exit-code prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"check-dependency-version-consistency": "3.0.3",
"dotenv-flow": "3.2.0",
"husky": "8.0.3",
"knip": "^1.6.1",
"lint-staged": "13.1.0",
"lockfile-lint": "4.10.0",
"markdownlint-cli2": "0.7.0",
"npm-run-all": "4.1.5",
"patch-package": "6.5.0",
"prettier": "2.8.2",
"prettier-plugin-packagejson": "2.3.0",
"prettier-plugin-sh": "0.12.8",
"suppress-exit-code": "3.1.0",
"turbo": "1.6.3",
"yarn-deduplicate": "6.0.0"
},
"engines": {
"node": ">=16.14.0"
}
}