-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
32 lines (32 loc) · 941 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
{
"name": "micro-frontends",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:host": "turbo run build --filter=host",
"build:checkout": "turbo run build --filter=checkout",
"build:product": "turbo run build --filter=product",
"dev": "turbo dev --concurrency=12",
"dev:host": "turbo dev --filter=host --concurrency=12",
"dev:checkout": "turbo dev --filter=checkout --concurrency=12",
"dev:product": "turbo dev --filter=product --concurrency=12",
"start": "turbo run start",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.1.0",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}