forked from Dun-sin/Whisper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
32
33
34
35
36
37
38
39
40
41
{
"name": "whisper",
"version": "0.0.0-development",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"start:server": "npm run start --workspace=server",
"start:client": "npm run start --workspace=client",
"build:client": "npm run build --workspace=client",
"lint:client": "npm run lint --workspace=client",
"format: client": "npm run format --workspace=client",
"start": "npm run start:server & npm run start:client",
"semantic-release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "https://github.com/Dun-sin/Whisper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dun-sin/Whisper/issues"
},
"homepage": "https://github.com/Dun-sin/Whisper#readme",
"dependencies": {
"validator": "^13.7.0"
},
"devDependencies": {
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^19.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}