-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
72 lines (72 loc) · 2.19 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "18 || 20"
},
"scripts": {
"prepare": "husky install",
"dev": "concurrently \"yarn start\" \"yarn start:app\"",
"docker:dev": "yarn docker:up && yarn dev",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"start:app": "yarn workspace @drodil/backstage-plugin-toolbox start --config ../../app-config.yaml",
"start": "yarn workspace @drodil/backstage-plugin-toolbox-backend start --config ../../app-config.yaml",
"build": "backstage-cli repo build --all",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"backstage:bump": "backstage-cli versions:bump",
"bump": "yarn run standard-version --no-verify --releaseCommitMessageFormat 'v{{currentTag}}'",
"fix": "backstage-cli repo fix --publish",
"new": "backstage-cli new --scope @drodil"
},
"workspaces": {
"packages": [
"plugins/**"
]
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@spotify/prettier-config": "^15.0.0",
"@types/crypto-hash": "^1.1.2",
"@types/webpack": "^5.28.2",
"concurrently": "^8.0.0",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"standard-version": "^9.5.0",
"typescript": "~5.0.0"
},
"resolutions": {
"@types/react": "^17",
"@types/react-dom": "^17"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"package.json": [
"yarn fix"
]
},
"packageManager": "yarn@4.5.0"
}