-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 3.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 3.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@costscope/monorepo",
"private": true,
"version": "0.0.0-monorepo",
"description": "Costscope Backstage plugin monorepo (aggregator root)",
"license": "Apache-2.0",
"workspaces": [
"packages/contracts",
"packages/plugin",
"packages/mock-backend",
"examples/backstage-app",
"examples/backstage-app/packages/app",
"examples/minimal-app"
],
"scripts": {
"prepare": "husky",
"lint": "eslint 'packages/plugin/src/**/*.{ts,tsx}' 'scripts/**/*.{js,ts,cjs,mjs}' 'packages/**/scripts/**/*.{js,ts,cjs,mjs}' 'tests-e2e/**/*.cjs'",
"lint:fix": "eslint 'packages/plugin/src/**/*.{ts,tsx}' 'scripts/**/*.{js,ts,cjs,mjs}' 'packages/**/scripts/**/*.{js,ts,cjs,mjs}' 'tests-e2e/**/*.cjs' --fix",
"lint:types": "ESLINT_TYPES=1 eslint 'packages/plugin/src/**/*.{ts,tsx}'",
"lint:types:fix": "ESLINT_TYPES=1 eslint 'packages/plugin/src/**/*.{ts,tsx}' --fix",
"format": "prettier --write .",
"typecheck": "yarn workspace @costscope/backstage-plugin typecheck",
"build": "yarn workspace @costscope/backstage-plugin build",
"build:size": "yarn workspace @costscope/backstage-plugin build:size",
"lint:all": "yarn workspaces foreach -pv run lint || true",
"typecheck:all": "yarn workspaces foreach -pv run typecheck || true",
"build:watch": "yarn workspace @costscope/backstage-plugin build:watch",
"test": "yarn workspace @costscope/backstage-plugin test",
"test:dev": "yarn workspace @costscope/backstage-plugin test:dev",
"test:fast": "yarn workspace @costscope/backstage-plugin test:fast",
"dev": "yarn workspace @costscope/backstage-plugin dev",
"dev:full": "yarn workspace @costscope/backstage-plugin dev:full",
"storybook:dev": "yarn workspace @costscope/backstage-plugin storybook -- --config-dir ../../.storybook --initial-path /docs/costscope-pages-costscopepage--docs --no-open",
"storybook:build": "yarn workspace @costscope/backstage-plugin build-storybook -- --config-dir ../../.storybook --output-dir storybook-static",
"build-storybook": "yarn --cwd packages/plugin workspace @costscope/backstage-plugin build-storybook -- --config-dir ../../.storybook --output-dir ../../storybook-static",
"verify": "yarn recursion:check && yarn workspace @costscope/backstage-plugin verify",
"demo": "yarn workspace @costscope/backstage-plugin demo",
"demo:front": "yarn workspace @costscope/backstage-plugin demo:front",
"changeset": "changeset",
"release:check": "yarn recursion:check && yarn workspace @costscope/backstage-plugin release:check",
"e2e:full": "yarn workspace @costscope/backstage-plugin e2e:full",
"e2e:smoke": "yarn workspace @costscope/backstage-plugin test:e2e:quick",
"e2e:reuse": "yarn workspace @costscope/backstage-plugin test:e2e:reuse",
"e2e:smoke:reuse": "yarn workspace @costscope/backstage-plugin test:e2e:quick",
"preview:test": "PREVIEW_BASE=${PREVIEW_BASE:-http://localhost:5190/costscope-backstage-plugin/minimal} npx playwright test -c playwright.preview.config.ts -g 'Manual preview smoke'",
"api:check": "yarn workspace @costscope/backstage-plugin api:check",
"api:check:strict": "yarn workspace @costscope/backstage-plugin api:check:strict",
"clean": "yarn workspaces foreach -vt run clean || true",
"diagnose": "yarn workspace @costscope/backstage-plugin diagnose",
"sync:examples": "node scripts/sync-examples-version.js",
"recursion:check": "node scripts/check-recursion.js"
},
"resolutions": {
"axios": "^1.12.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"eslint": "^9.0.0",
"prettier": "^3.2.5"
},
"overrides": {
"axios": "^1.12.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}