-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "basestack-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"bootstrap": "yarn install && yarn build",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:update": "turbo run test:update",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo",
"prepare": "husky",
"precommit": "yarn format && yarn lint && lint-staged",
"commit": "git-cz",
"changelog:denerate": "npx changelogen@latest",
"update:packages": "yarn upgrade-interactive --latest",
"dev:packages": "turbo run dev --filter=./packages/*",
"build:packages": "turbo run build --filter=./packages/*",
"build:feature-flags": "turbo run build --filter=@basestack/feature-flags",
"build:forms": "turbo run build --filter=@basestack/forms",
"build:landing-page": "turbo run build --filter=@basestack/landing-page",
"deploy:feature-flags": "turbo run @basestack/feature-flags#deploy",
"deploy:forms": "turbo run @basestack/forms#deploy",
"deploy:landing-page": "turbo run @basestack/landing-page#deploy",
"deploy:docs": "turbo run @basestack/docs#deploy",
"start:feature-flags": "turbo run @basestack/feature-flags#start",
"start:forms": "turbo run @basestack/forms#start"
},
"devDependencies": {
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.3.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}