-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 989 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
{
"name": "@pixel-dust/root",
"private": true,
"devDependencies": {
"lerna": "^4.0.0",
"rimraf": "^3.0.2"
},
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"bootstrap": "npx lerna bootstrap && lerna run build --ignore @pixel-dust/website",
"version": "npx lerna version",
"clean": "lerna clean && rimraf ./node_modules",
"publish": "npm run clean && npx lerna bootstrap && lerna publish from-package",
"dev": "lerna run start --stream --parallel",
"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"
}
}