-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16 || 18"
},
"scripts": {
"dev": "concurrently \"yarn start\"",
"start": "yarn workspace backstage-plugin-konfig start",
"start:ci": "concurrently \"yarn start\"",
"build": "backstage-cli repo build --all",
"build:api-report": "backstage-repo-tools api-reports",
"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",
"version": "yarn build:api-report && changeset version && yarn install && (git commit -am 'Update internal dependencies' || true)",
"release": "changeset publish",
"prepare": "husky install",
"postinstall": "husky install || true",
"new": "backstage-cli new --baseVersion 0.0.0 --no-private"
},
"workspaces": {
"packages": [
"plugins/**"
]
},
"dependencies": {
"@changesets/cli": "^2.18.0"
},
"devDependencies": {
"@backstage/cli": "^0.22.9",
"@backstage/repo-tools": "^0.3.2",
"@spotify/prettier-config": "^12.0.0",
"@types/webpack": "^5.28.0",
"concurrently": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.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"
]
},
"packageManager": "[email protected]"
}