forked from i-VRESSE/workflow-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 783 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
{
"name": "workflow-builder-monorepo",
"version": "1.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"test": "turbo run test --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"storybook": "turbo run storybook --parallel --no-cache",
"postinstall": "husky install"
},
"devDependencies": {
"husky": "^8.0.0",
"turbo": "1.2.16"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/react": "17.0.47"
}
}