-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "gobarber",
"private": true,
"version": "0.1.2",
"license": "MIT",
"author": {
"name": "Harlan Cleiton",
"email": "[email protected]",
"url": "https://github.com/harlancleiton"
},
"workspaces": {
"packages": [
"clients/*",
"server",
"shared/*"
],
"nohoist": [
"**/typeorm/**",
"**/typeorm"
]
},
"scripts": {
"build": "yarn workspaces run build",
"dev": "yarn workspaces run dev",
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test",
"release": "standard-version",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@shared/eslint-config": "*",
"@types/jest": "^26.0.20",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}