-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 1.46 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": "backstage-plugin-snyk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "0.0.0-development",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"scripts": {
"build": "yarn tsc",
"test": "backstage-cli test"
},
"dependencies": {
"@backstage/catalog-model": "^1.4.5",
"@backstage/core-components": "^0.14.3",
"@backstage/core-plugin-api": "^1.9.1",
"@backstage/plugin-catalog-react": "^1.11.2",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@snyk/dep-graph": "2.8.1",
"@types/react-dom": "^18.2.18",
"react-circular-progressbar": "^2.1.0",
"react-use": "^17.4.0"
},
"devDependencies": {
"@backstage/cli": "^0.26.2",
"@backstage/dev-utils": "^1.0.30",
"@backstage/test-utils": "^1.5.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.2.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"msw": "^2.0.5",
"node-fetch": "^3.3.2",
"snyk": "^1.1243.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0",
"react-router-dom": "^6.18.0"
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts",
"pkg": {
"scripts": [
"dist/**/*.js"
]
},
"release": {
"branches": [
"main"
]
}
}