forked from Oriflame/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.64 KB
/
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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ori-backstage-plugins",
"description": "Oriflame plugins for Backstage.",
"maintainers": [
],
"version": "0.2.2",
"private": true,
"engines": {
"node": "18 || 20"
},
"scripts": {
"dev": "concurrently 'yarn start' 'yarn start-backend' 'http-server -p 8090 --cors 2>&1'",
"start": "yarn workspace app start",
"start-backend": "yarn workspace backend start",
"build": "backstage-cli repo build --all",
"tsc": "tsc",
"tsc:full": "backstage-cli repo clean && tsc --skipLibCheck true --incremental false",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"test:e2e": "tsc && playwright test",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"lint:type-deps": "backstage-repo-tools type-deps",
"new": "backstage-cli new --scope ori --baseVersion 0.0.0 --no-private",
"create-plugin": "echo \"use 'yarn new' instead\"",
"release": "node scripts/prepare-release.js && changeset version && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install --no-immutable",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lock:check": "yarn-lock-check"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"resolutions": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"dockerode": "3.3.5",
"@types/dockerode": "3.3.28",
"jest-environment-jsdom": "30.0.0-alpha.2"
},
"dependencies": {
"jest-environment-jsdom": "30.0.0-alpha.2"
},
"devDependencies": {
"@backstage/cli": "^0.25.1",
"@backstage/e2e-test-utils": "^0.1.0",
"@backstage/repo-tools": "^0.5.2",
"@changesets/cli": "2.27.1",
"@playwright/test": "^1.43.0",
"@spotify/prettier-config": "14.1.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/webpack": "5.28.0",
"concurrently": "^8.0.0",
"eslint-plugin-notice": "0.9.10",
"http-server": "14.1.1",
"prettier": "2.8.8",
"react": "^18.0.0",
"typescript": "~5.4.0"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"*.md": [
"node ./scripts/check-docs-quality"
]
},
"packageManager": "[email protected]"
}