forked from brandingbrand/flagship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 798 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
{
"name": "@brandingbrand/flagship-code",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build --concurrency 100",
"dev": "turbo dev --concurrency 100",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "turbo lint --",
"prepare": "husky install",
"test": "turbo test"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write",
"package.json": "format-package -w"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"format-package": "^7.0.0",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": "^3.1.1",
"turbo": "latest"
}
}