-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.21 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.21 KB
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
{
"name": "@callstack/inspector-monorepo",
"private": true,
"scripts": {
"example": "yarn workspace inspector-example",
"clean": "yarn workspace @callstack/inspector clean",
"prepare": "yarn workspace @callstack/inspector prepare",
"typecheck": "yarn workspace @callstack/inspector-cli typecheck && yarn workspace @callstack/inspector typecheck",
"lint": "yarn workspace @callstack/inspector-cli lint && yarn workspace @callstack/inspector lint",
"test": "yarn workspace @callstack/inspector test",
"build:android": "yarn turbo run build:android",
"build:ios": "yarn turbo run build:ios",
"build": "yarn turbo run build",
"ci:version": "changeset version && yarn install --no-immutable",
"ci:publish": "yarn workspaces foreach --no-private -At npm publish && changeset tag"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/config-conventional": "^20.5.0",
"babel-plugin-module-resolver": "5.0.2",
"commitlint": "^20.5.0",
"lefthook": "^2.1.4",
"turbo": "^2.8.21"
},
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "yarn@4.11.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}