-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "@internal/plugin-dynamic-plugins-info-backend",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "dynamic-plugins-info",
"pluginPackages": [
"@internal/plugin-dynamic-plugins-info",
"@internal/plugin-dynamic-plugins-info-backend"
]
},
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"test": "backstage-cli package test --passWithNoTests --coverage",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"dependencies": {
"@backstage/backend-defaults": "0.12.2",
"@backstage/backend-dynamic-feature-service": "0.7.3",
"@backstage/backend-plugin-api": "1.4.2",
"@backstage/config": "1.3.3",
"express": "4.21.2",
"node-fetch": "2.7.0",
"winston": "3.18.3"
},
"devDependencies": {
"@backstage/backend-test-utils": "1.8.0",
"@backstage/cli": "0.34.1",
"@types/express": "4.17.24",
"@types/supertest": "6.0.3",
"msw": "1.3.5",
"prettier": "3.6.2",
"supertest": "6.3.4",
"typescript": "5.9.3"
},
"files": [
"dist"
]
}