-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
21 lines (21 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"cleanup":"node 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 && npx lerna run build --scope=@flexilla/uno-preset"
},
"devDependencies": {
"@types/node": "^20.11.5",
"lerna": "^8.1.9"
},
"dependencies": {
"overlayscrollbars": "^2.10.0"
}
}