-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1015 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1015 Bytes
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
{
"private": true,
"scripts": {
"dev": "turbo run dev --filter=wfo-ui...",
"dev:surf": "turbo run dev --filter=wfo-ui-surf...",
"dev:storybook": "turbo run dev --filter=storybook...",
"dev:all": "turbo run dev",
"test": "turbo run test",
"tsc": "turbo run tsc",
"lint": "turbo run lint",
"prettier": "prettier -c \"{**/*,*}.{ts,tsx,json,js,md}\"",
"prettier-fix": "prettier --write \"{**/*,*}.{ts,tsx,json,js,md}\"",
"build": "turbo run build",
"packages:changeset": "changeset",
"packages:publish": "turbo run build lint test && changeset publish",
"postinstall": "husky && turbo run build --filter=./packages/*"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@turbo/gen": "^2.5.2",
"husky": "^9.0.11",
"prettier": "^3.8.1",
"turbo": "^2.6.1"
},
"name": "orchestrator-core-ui",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "npm@10.9.0"
}