forked from Oriflame/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "ori-backstage-plugins",
"description": "Oriflame plugins for Backstage.",
"maintainers": [
],
"version": "0.1.17",
"private": true,
"engines": {
"node": "14 || 16"
},
"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 clean && tsc --skipLibCheck true --incremental false",
"clean": "backstage-cli clean && lerna run clean",
"diff": "lerna run diff --",
"test": "backstage-cli test",
"test:all": "lerna run test -- --coverage",
"test:e2e": "yarn workspace app cypress run",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"lint:type-deps": "node scripts/check-type-dependencies.js",
"create-plugin": "backstage-cli create-plugin --scope ori --no-private",
"remove-plugin": "backstage-cli remove-plugin",
"release": "node scripts/prepare-release.js && changeset version && yarn diff --yes && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install",
"prettier:check": "prettier --check .",
"lerna": "lerna",
"lock:check": "yarn-lock-check"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"resolutions": {
"@types/react": "^17",
"@types/react-dom": "^17",
"dockerode": "3.3.4",
"@types/dockerode": "3.3.9"
},
"dependencies": {
"@changesets/cli": "2.25.2"
},
"devDependencies": {
"@backstage/cli": "^0.22.1",
"@spotify/prettier-config": "14.1.4",
"@types/webpack": "5.28.0",
"concurrently": "7.5.0",
"eslint-plugin-notice": "0.9.10",
"lerna": "5.6.2",
"prettier": "2.7.1",
"typescript": "4.8.4",
"@types/react": "17.0.52",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"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"
]
}
}