-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"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 repo 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.16.4",
"@backstage/core-plugin-api": "^1.10.4",
"@backstage/theme": "^0.6.4",
"@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.30.0",
"@backstage/core-app-api": "^1.15.5",
"@backstage/dev-utils": "^1.1.7",
"@backstage/test-utils": "^1.7.5",
"@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.2.0",
"msw": "2.7.1",
"prettier": "3.3.3"
},
"resolutions": {
"jsonpath-plus": "10.3.0",
"elliptic": "6.6.1",
"koa": "2.15.4",
"react-markdown": "10.0.0"
},
"prettier": "@spotify/prettier-config",
"files": [
"dist"
]
}