forked from Frontify/brand-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 1.1 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
{
"name": "root",
"private": true,
"scripts": {
"build": "pnpm build:app-bridge && pnpm build:sidebar-settings && pnpm build:guideline-packages && pnpm build:cli",
"build:app-bridge": "pnpm --stream --filter {packages/app-bridge} build",
"build:sidebar-settings": "pnpm --stream --filter {packages/sidebar-settings} build",
"build:guideline-packages": "pnpm --stream --filter {packages/guideline-*} --parallel build",
"build:cli": "pnpm --stream --filter {packages/cli} build",
"lint": "pnpm --stream --filter {packages/**} --parallel lint",
"lint:fix": "pnpm --stream --filter {packages/**} --parallel lint:fix",
"test": "pnpm --stream --filter {packages/**} --parallel test",
"typecheck": "pnpm --stream --filter {packages/**} --parallel typecheck",
"prepare": "is-ci || husky install",
"ci:publish": "pnpm build && pnpm publish -r --access public"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"husky": "8.0.3",
"is-ci": "3.0.1"
}
}