forked from nhn/tui.editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.57 KB
/
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
27
28
29
30
31
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"lerna": "^3.20.2",
"prettier": "^1.19.1"
},
"scripts": {
"build:editor": "lerna run --scope @toast-ui/editor build",
"build:jquery": "lerna run --scope @toast-ui/jquery-editor build",
"build:react": "lerna run --scope @toast-ui/react-editor build",
"build:vue": "lerna run --scope @toast-ui/vue-editor build",
"build:chart": "lerna run --scope @toast-ui/editor-plugin-chart build",
"build:color-syntax": "lerna run --scope @toast-ui/editor-plugin-color-syntax build",
"build:code-syntax-highlight": "lerna run --scope @toast-ui/editor-plugin-code-syntax-highlight build",
"build:table-merged-cell": "lerna run --scope @toast-ui/editor-plugin-table-merged-cell build",
"build:uml": "lerna run --scope @toast-ui/editor-plugin-uml build",
"build:toastmark": "lerna run --scope @toast-ui/toastmark build",
"build:squire": "lerna run --scope @toast-ui/squire build",
"build:to-mark": "lerna run --scope @toast-ui/to-mark build",
"install:toastmark": "cd libs/toastmark && npm install",
"install:squire": "cd libs/squire && npm install",
"install:to-mark": "cd libs/to-mark && npm install",
"install:libs": "npm run install:toastmark && npm run install:squire && npm run install:to-mark",
"build:libs": "npm run build:toastmark && npm run build:squire && npm run build:to-mark",
"setup:libs": "npm run install:libs && npm run build:libs"
}
}