-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
{
"name": "@internal/plugin-licensed-users-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": "licensed-users-info",
"pluginPackages": [
"@internal/plugin-licensed-users-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-community/plugin-rbac-common": "1.26.1",
"@backstage/backend-defaults": "0.16.0",
"@backstage/backend-plugin-api": "1.8.0",
"@backstage/catalog-client": "1.14.0",
"@backstage/catalog-model": "1.7.7",
"@backstage/config": "1.3.6",
"@backstage/errors": "1.3.0",
"@backstage/plugin-auth-backend": "0.27.3",
"@backstage/plugin-permission-common": "0.9.7",
"@backstage/types": "1.2.2",
"express": "4.22.1",
"express-promise-router": "4.1.1",
"json-2-csv": "5.5.11",
"knex": "3.1.0",
"luxon": "3.7.2",
"node-fetch": "2.7.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "1.11.1",
"@backstage/cli": "0.36.0",
"@backstage/cli-defaults": "0.1.0",
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.17",
"@types/express": "4.17.25",
"@types/supertest": "6.0.3",
"msw": "1.3.5",
"prettier": "3.8.1",
"supertest": "6.3.4",
"typescript": "5.9.3"
},
"files": [
"dist"
]
}