-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
42
43
44
45
46
{
"name": "instshare",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "concurrently \"yarn client\" \"yarn server\"",
"build": "concurrently \"yarn workspace client build\" \"yarn workspace server build\"",
"client": "yarn workspace client dev",
"server": "yarn workspace server start:dev",
"lint": "concurrently \"yarn workspace server lint\" \"yarn workspace client lint\" \"yarn workspace common lint\"",
"prepare": "husky install",
"build_common": "yarn workspace common build"
},
"workspaces": [
"client",
"server",
"common"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit $1"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*{.tsx,.jsx,.ts,.js}": [
"yarn lint"
]
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"concurrently": "^7.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1"
}
}