forked from mongodb/chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 779 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 779 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": "root",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"chat-core",
"chat-server",
"chat-ui",
"ingest",
"scripts",
"performance-tests"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "lerna run dev --scope='{chat-server,mongodb-chatbot-ui}' --stream --parallel",
"dev:server": "lerna run dev --scope='chat-server' --stream",
"dev:ui": "lerna run dev --scope='mongodb-chatbot-ui' --stream",
"clean": "lerna clean",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"release:chat-ui": "lerna run release --scope mongodb-chatbot-ui && git add ./package-lock.json && git commit --amend --no-edit"
},
"devDependencies": {
"lerna": "^5.6.2"
}
}