-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"name": "mng-stack",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"start": "turbo start",
"lint": "turbo lint",
"test": "turbo test",
"ui": "pnpm --filter @repo/ui ui",
"test:coverage": "turbo test:coverage",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.17.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"bun": "please-use-pnpm",
"pnpm": ">=9.0.1"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}