forked from jameskerr/react-arborist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 704 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "react-arborist-monorepo",
"workspaces": [
"./modules/*"
],
"scripts": {
"build": "yarn workspaces foreach --all run build",
"build-lib": "yarn workspace react-arborist build",
"test": "yarn workspaces foreach --all run test",
"watch": "yarn workspace react-arborist watch",
"bump": "yarn workspace react-arborist version",
"clean": "yarn workspace react-arborist clean",
"showcase": "yarn workspace showcase start",
"start": "run-s clean build-lib && run-p watch showcase",
"publish": "sh bin/publish"
},
"private": true,
"packageManager": "yarn@4.0.2",
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3"
}
}