forked from Pipe-Runner-Lab/pixel-dust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 804 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 804 Bytes
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
{
"name": "@pixel-dust/root",
"private": true,
"devDependencies": {
"lerna": "^4.0.0"
},
"workspaces": {
"packages": [
"packages/*",
"website"
]
},
"scripts": {
"clean": "lerna clean",
"dev": "lerna run start --stream --parallel",
"publish": "lerna publish from-package",
"build": "lerna run build --stream",
"base:dev": "lerna --scope @pixel-dust/base run start --stream",
"base:build": "lerna --scope @pixel-dust/base run build --stream",
"react:dev": "lerna --scope @pixel-dust/react run start --stream",
"react:build": "lerna --scope @pixel-dust/react run build --stream",
"website:dev": "lerna --scope @pixel-dust/website run start --stream",
"website:build": "lerna --scope @pixel-dust/website run build --stream"
}
}