forked from stellar/stellar-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·26 lines (26 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·26 lines (26 loc) · 1.06 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
{
"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 build:sds-web",
"start:sds": "yarn workspace @stellar/design-system start",
"start:sds-web": "yarn workspace @stellar/design-system-website start",
"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": {}
}