-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
22 lines (22 loc) · 1.14 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"cleanup":"node scripts/cleanup.js",
"setup":"npm install && npm run cleanup && npm run build",
"build:utilities": "npx lerna run build --scope=@flexilla/utilities && npx lerna run build --scope=@flexilla/popover && npx lerna run build --scope=@flexilla/collapse",
"build:packages": "npx lerna run build --scope=@flexilla/accordion && npx lerna run build --scope=@flexilla/auto-resize-area && npx lerna run build --scope=@flexilla/custom-range && npx lerna run build --scope=@flexilla/dismissible && npx lerna run build --scope=@flexilla/dropdown && npx lerna run build --scope=@flexilla/modal && npx lerna run build --scope=@flexilla/offcanvas && npx lerna run build --scope=@flexilla/tabs && npx lerna run build --scope=@flexilla/tooltip",
"build": "npm run build:utilities && npm run build:packages && npx lerna run build --scope=@flexilla/flexilla",
"publish:packages":"node scripts/publish.js"
},
"devDependencies": {
"@types/node": "^20.11.5",
"lerna": "^8.1.9"
},
"dependencies": {
"overlayscrollbars": "^2.10.0"
}
}