-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
{
"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": [
"./examples/*",
"./packages/*",
"website"
],
"scripts": {
"build": "turbo build",
"build:pkg": "turbo build --filter='./packages/*'",
"core:build": "yarn workspace storybooker build",
"core:dev": "yarn workspace storybooker dev",
"cli": "yarn workspace @storybooker/cli start",
"cli:dev": "yarn workspace @storybooker/cli dev",
"docs": "yarn workspace website start",
"fmt": "turbo fmt",
"functions": "yarn workspace azure-functions-app dev",
"lint": "turbo lint",
"prepare": "husky",
"release": "node ./scripts/release.ts",
"server": "NODE_ENV=development OTEL_DENO=true deno serve -RNEW --watch --unstable-raw-imports ./scripts/server.ts",
"test": "turbo test",
"ui:build": "yarn workspace @storybooker/ui build",
"ui:dev": "yarn workspace @storybooker/ui dev",
"verify": "turbo verify --filter='./packages/*'"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"prettier": "^3.7.4",
"turbo": "^2.7.2"
},
"overrides": {
"debug": "4.4.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "oxfmt --no-error-on-unmatched-pattern",
"!(*.js|*.ts|*.tsx)": "prettier --write --ignore-unknown"
}
}