forked from cbnsndwch/ghl-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "@cbnsndwch/ghl-app",
"description": "A base template for full stack HighLevel Marketplace apps",
"version": "0.2.0",
"license": "MIT",
"private": true,
"repository": "https://github.com/cbnsndwch/ghl-app",
"author": {
"name": "Sergio Leon",
"url": "https://github.com/cbnsndwch"
},
"workspaces": {
"packages": [
"apps/*",
"libs/*"
]
},
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"vmajor": "yarn workspaces foreach -v --topological-dev version major",
"vminor": "yarn workspaces foreach -v --topological-dev version minor",
"vpatch": "yarn workspaces foreach -v --topological-dev version patch",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -o changelog-temp.md"
},
"devDependencies": {
"change-case": "^5.1.2",
"conventional-changelog-cli": "^4.1.0",
"http-server": "^14.1.1",
"turbo": "~1.12.3"
},
"packageManager": "[email protected]"
}