forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 761 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 761 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
28
29
30
31
32
33
34
35
36
37
{
"name": "dogehouse",
"private": true,
"workspaces": {
"packages": [
"kebab",
"kibbeh",
"dinner",
"dolma"
],
"nohoist": [
"**"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.23",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"mediasoup-client": "^3.6.30",
"mediasoup-client-aiortc": "^3.6.3",
"ts-jest": "^26.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": "global"
}
},
"scripts": {
"prepare": "husky install",
"commit": "cz",
"commit:signed": "cz -S"
}
}