-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 722 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 722 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
{
"name": "chatbot-app",
"version": "1.0.0",
"description": "Create, Read, Update and Delete rivescript chatbots.",
"homepage": "https://github.com/redac/chatbot-admin-app",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"front-dev": "npm run dev --workspace=ui",
"back-dev": "npm run watch --workspace=server",
"dev": "concurrently npm:*-dev",
"debug": "nodemon --inspect server/start.js"
},
"author": "Reda Khermach, Kellian Germain",
"repository": {
"type": "git",
"url": "https://github.com/redac/chatbot-admin-app"
},
"license": "GPL-2.0",
"workspaces": [
"./server",
"./ui"
],
"devDependencies": {
"concurrently": "^7.2.0"
}
}