-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "18 || 20"
},
"scripts": {
"prepare": "husky install",
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
"docker:dev": "yarn docker:up && yarn dev",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"start": "yarn workspace @drodil/backstage-plugin-qeta start",
"start-backend": "yarn workspace @drodil/backstage-plugin-qeta-backend start",
"start:ci": "concurrently \"yarn start\" \"yarn start-backend:ci\"",
"build": "backstage-cli repo build --all",
"tsc": "tsc",
"tsc:full": "tsc --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",
"knip": "knip",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"backstage:bump": "backstage-cli versions:bump",
"bump-test": "yarn run standard-version --dry-run --no-verify --releaseCommitMessageFormat 'v{{currentTag}}'",
"bump": "yarn run standard-version --no-verify --releaseCommitMessageFormat 'v{{currentTag}}'",
"fix": "backstage-cli repo fix --publish",
"knip:check:deps": "knip --include dependencies --cache && :"
},
"workspaces": {
"packages": [
"plugins/**"
]
},
"resolutions": {
"@types/react": "^17.0.59",
"@types/react-dom": "^17"
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@spotify/prettier-config": "^15.0.0",
"concurrently": "^7.0.0",
"husky": "^8.0.1",
"knip": "^5.27.0",
"lint-staged": "^14.0.1",
"prettier": "^2.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"standard-version": "^9.5.0",
"typescript": "~5.0.0"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"package.json": [
"yarn fix",
"yarn knip:check:deps"
]
},
"packageManager": "yarn@4.5.0"
}