-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·27 lines (27 loc) · 1.13 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
{
"private": true,
"workspaces": [
"@stellar/design-system",
"@stellar/design-system-website"
],
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix --max-warnings 0"
]
},
"scripts": {
"build:sds": "yarn workspace @stellar/design-system build",
"build:sds-web": "yarn workspace @stellar/design-system-website build",
"build": "run-s build:sds docs:sds build:sds-web",
"start:sds": "yarn workspace @stellar/design-system start",
"start:sds-web": "yarn workspace @stellar/design-system-website start",
"docs:sds": "yarn workspace @stellar/design-system typedoc",
"tsc:sds": "yarn workspace @stellar/design-system lint-tsc",
"tsc:sds-web": "yarn workspace @stellar/design-system-website lint-tsc",
"clean": "rm -rf node_modules && rm -rf */**/node_modules && rm -rf */**/build",
"prepare": "husky install",
"install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet yarn.lock && yarn install || exit 0",
"pre-commit": "concurrently 'pretty-quick --staged' 'lint-staged' 'yarn tsc:sds' 'yarn tsc:sds-web'"
},
"dependencies": {}
}