-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 907 Bytes
/
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
32
33
34
35
36
37
38
39
40
{
"name": "sova-caller-app",
"version": "1.0.0",
"description": "sova-caller-app",
"main": "index.js",
"scripts": {
"commit-all": "git add . && git cz",
"test": "echo \"Error: no test specified\" && exit 1",
"start:ui": "npm start --prefix ui",
"start:server": "npm start --prefix server",
"start": "concurrently --kill-others 'npm:start:server' 'npm:start:ui'"
},
"repository": {
"type": "git",
"url": "[email protected]:sovaai/sova-caller.git"
},
"keywords": [
"sova",
"sova-caller",
"sip"
],
"authors": [
{
"name": "sova.ai",
"gitHub": "https://github.com/sovaai"
}
],
"license": "Apache-2.0",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"concurrently": "^7.3.0"
}
}