-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.33 KB
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
35
36
37
38
39
40
{
"name": "storybooker-monorepo",
"private": true,
"type": "module",
"description": "Self hosted Storybooks management.",
"repository": "git@github.com:GuptaSiddhant/storybooker.git",
"author": "Siddhant Gupta <guptasiddhant@icloud.com>",
"license": "MIT",
"packageManager": "yarn@4.12.0",
"workspaces": [
"./apps/*",
"./packages/*"
],
"scripts": {
"build": "turbo build",
"build:pkg": "turbo build --filter='./packages/*'",
"core:build": "yarn workspace @storybooker/core build",
"core:dev": "yarn workspace @storybooker/core dev",
"cli": "yarn workspace storybooker start",
"cli:dev": "yarn workspace storybooker dev",
"docs": "yarn workspace website start",
"fmt": "yarn workspaces foreach -Ap run fmt",
"oxfmt": "yarn workspaces foreach -Ap run oxfmt",
"functions": "yarn workspace azure-functions-app dev",
"lint": "turbo lint",
"release": "node ./scripts/release.ts",
"server": "NODE_ENV=development OTEL_DENO=true deno serve -REW --unstable-sloppy-imports --watch ./scripts/server.ts",
"test": "turbo test",
"verify": "turbo verify --filter='./packages/*'"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"oxfmt": "^0.16.0",
"prettier": "catalog:",
"turbo": "^2.6.4-canary.3"
},
"overrides": {
"debug": "4.4.1"
}
}