forked from snyk-tech-services/backstage-plugin-snyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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": "backstage-plugin-snyk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"scripts": {
"build": "yarn tsc",
"test": "snyk test"
},
"dependencies": {
"@backstage/catalog-model": "1.1.1",
"@backstage/core-components": "0.11.1",
"@backstage/core-plugin-api": "1.0.6",
"@backstage/plugin-catalog-react": "1.1.4",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"@snyk/dep-graph": "2.3.0",
"react-circular-progressbar": "^2.0.3",
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.16.0",
"@backstage/dev-utils": "^1.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.7",
"@types/node": "^12.0.0",
"msw": "^0.30.1",
"node-fetch": "^2.6.1",
"snyk": "^1.812.0"
},
"files": [
"dist"
],
"pkg": {
"scripts": [
"dist/**/*.js"
]
},
"release": {
"branches": [
"main"
]
}
}