-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 649 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 649 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
26
27
{
"name": "coli-workspace",
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"editor",
"example"
],
"scripts": {
"clean": "rimraf packages/*/dist",
"lerna": "lerna",
"build": "yarn clean && lerna run build",
"publish:all": "yarn build && lerna publish --force-publish coli",
"lerna:version": "yarn lerna version --no-private",
"bootstrap": "lerna bootstrap",
"editor": "yarn workspace editor run dev",
"build:editor": "yarn workspace editor run build"
},
"devDependencies": {
"lerna": "^5.3.0"
},
"resolutions": {
"sharp": "^0.29.0"
}
}