-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.89 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
62
63
64
65
{
"name": "@pagerduty/backstage-plugin-scaffolder-actions",
"version": "NPM_PACKAGE_VERSION",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin-module",
"pluginPackage": "scaffolder",
"pluginId": "pagerduty-actions"
},
"homepage": "https://pagerduty.github.io/backstage-plugin-docs/index.html",
"repository": {
"type": "git",
"url": "https://github.com/PagerDuty/backstage-plugin-scaffolder-actions.git",
"directory": "."
},
"scripts": {
"start": "yarn tsc && backstage-cli package start",
"build": "yarn tsc && backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.23.2",
"@backstage/backend-defaults": "^0.3.3",
"@backstage/backend-plugin-api": "^0.6.21",
"@backstage/config": "^1.2.0",
"@backstage/plugin-scaffolder-node": "^0.4.7",
"@pagerduty/backstage-plugin-common": "0.2.0",
"@rjsf/core": "^5.14.3",
"@rjsf/utils": "^5.19.3",
"node-fetch": "^2.6.7",
"react": "18.3.1",
"winston": "^3.2.1",
"yn": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@backstage/cli": "^0.26.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.9.2",
"@types/node-fetch": "2.6.11",
"@types/supertest": "^2.0.12",
"@types/webpack-env": "1.18.4",
"jest-mock": "29.7.0",
"msw": "^1.0.0",
"supertest": "^6.2.4",
"typescript": "^4.8.4"
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts",
"packageManager": "[email protected]"
}