-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"plugins/*"
]
},
"scripts": {
"start": "backstage-cli repo start",
"build": "backstage-cli repo build --all",
"lint": "backstage-cli repo lint",
"test": "backstage-cli test --watchAll=false",
"clean": "backstage-cli repo clean",
"tsc": "tsc",
"ci": "tsc && backstage-cli repo build --all && backstage-cli test --watchAll=false && backstage-cli repo lint && prettier --check .",
"version:minor": "npx lerna version minor",
"version:major": "npx lerna version major",
"version:patch": "npx lerna version patch"
},
"dependencies": {
"@backstage/core-components": "0.14.9",
"@backstage/core-plugin-api": "1.9.3",
"@backstage/theme": "0.5.6",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"react-use": "17.5.1"
},
"peerDependencies": {
"react": "18.3.1"
},
"devDependencies": {
"@backstage/cli": "0.26.11",
"@backstage/core-app-api": "1.14.2",
"@backstage/dev-utils": "1.0.37",
"@backstage/test-utils": "1.5.9",
"@spotify/prettier-config": "15.0.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.14.15",
"lerna": "8.1.8",
"msw": "2.3.5",
"prettier": "3.3.3"
},
"prettier": "@spotify/prettier-config",
"files": [
"dist"
]
}