-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.12 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
{
"name": "root",
"private": true,
"scripts": {
"build:lib": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"clean:full": "npm run clean && find packages/openbridge-webcomponents-ng packages/openbridge-webcomponents-react packages/openbridge-webcomponents-svelte packages/openbridge-webcomponents-vue -mindepth 1 ! -name 'README.md' -exec rm -rf {} + || true",
"format:all": "npm run format --workspaces --if-present",
"build:docker-for-storybook-testing": "docker build -t openbridge-webcomponents-storybook .",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"license": "Apache-2.0",
"dependencies": {
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"lint-staged": {
"packages/openbridge-webcomponents/src/**/*.ts": [
"eslint --config packages/openbridge-webcomponents/eslint.config.mjs --max-warnings=4",
"prettier --write"
],
"packages/openbridge-webcomponents/**/*.{cjs,html,js,json,md,css}": [
"prettier --write"
]
}
}