forked from nossas/slate-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 723 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"scripts": {
"dev": "yarn install && node -r dotenv/config ./node_modules/.bin/lerna run start --parallel",
"start": "yarn install && ./node_modules/.bin/lerna run start --parallel",
"boot": "./node_modules/.bin/lerna bootstrap",
"test": "./node_modules/.bin/lerna run test",
"prepublish": "rimraf packages/**/dist",
"prepare": "./node_modules/.bin/lerna run prepare",
"release:alpha": "./node_modules/.bin/lerna publish --canary=alpha",
"version-bump": "./node_modules/.bin/lerna publish --conventional-commits --skip-npm"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"dotenv": "^5.0.1",
"lerna": "^2.7.1",
"rimraf": "^2.6.2"
}
}