-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 981 Bytes
/
package.json
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
{
"name": "root",
"dependencies": {},
"devDependencies": {
"lerna": "^8.0.0"
},
"scripts": {
"publish": "lerna publish",
"create-packs": "lerna create package-name -y",
"build": "lerna run build",
"cb-b": "lerna run build:prod --scope=@bbepacks/components-base",
"cb-i": "lerna run i --scope=@bbepacks/components-base",
"const-b": "lerna run build:prod --scope=@bbepacks/constants",
"const-i": "lerna run i --scope=@bbepacks/constants",
"utils-b": "lerna run build:prod --scope=@bbepacks/utils",
"utils-i": "lerna run i --scope=@bbepacks/utils",
"modules-b": "lerna run build:prod --scope=@bbepacks/modules",
"modules-i": "lerna run i --scope=@bbepacks/modules",
"types-b": "lerna run build:prod --scope=@bbepacks/types",
"types-i": "lerna run i --scope=@bbepacks/types"
},
"repository": {
"url": "https://github.com/MinhLeeBtaskee/bbepacks",
"type": "git"
},
"engines": {
"npm": ">=8.0.0"
}
}