-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 991 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 991 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
33
{
"name": "continuum-frontend",
"private": true,
"version": "0.0.7",
"scripts": {
"build": "turbo build",
"rebuild": "turbo build --no-cache --force",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"watch": "turbo watch",
"start:workbench": "turbo start --filter=@continuum/workbench --no-cache --force",
"build:workbench": "turbo build --filter=@continuum/workbench",
"start:workbench-thin": "turbo start --filter=@continuum/workbench-thin",
"build:workbench-thin": "turbo build --no-cache --filter=@continuum/workbench-thin"
},
"devDependencies": {
"prettier": "^3.1.1",
"turbo": "^1.13.3",
"@fortawesome/react-fontawesome": "^0.2.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.21",
"workspaces": [
"continuum-core",
"continuum-workbench",
"workflow-editor-extension",
"continuum-workbench-thin"
]
}