-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 1.29 KB
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 1.29 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
{
"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-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'"
},
"resolutions": {
"glob": "11.1.0",
"path-to-regexp": "1.9.0",
"cross-spawn": "7.0.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"dependencies": {}
}