-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "backstage-plugin-jfrog-artifactory-libs",
"version": "1.0.12",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"homepage": "https://github.com/Vity01/backstage-jfrog-artifactory-libs/",
"bugs": {
"url": "https://github.com/Vity01/backstage-jfrog-artifactory-libs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Vity01/backstage-jfrog-artifactory-libs"
},
"keywords": [
"backstage",
"jfrog",
"artifactory"
],
"jest": {
"coveragePathIgnorePatterns": [
"src/components/types.ts"
]
},
"sideEffects": false,
"scripts": {
"start": "backstage-cli package start",
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"coverage": "backstage-cli package test --coverage",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"backstage:bump": "backstage-cli versions:bump",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"bump": "yarn run standard-version --no-verify --releaseCommitMessageFormat 'v{{currentTag}}'"
},
"dependencies": {
"@backstage/catalog-model": "^1.7.0",
"@backstage/config": "^1.2.0",
"@backstage/core-components": "^0.15.0",
"@backstage/core-plugin-api": "^1.9.4",
"@backstage/plugin-catalog": "^1.23.1",
"@backstage/plugin-catalog-react": "^1.13.1",
"@backstage/plugin-scaffolder": "^1.25.1",
"@backstage/plugin-scaffolder-react": "^1.12.1",
"@backstage/types": "^1.1.1",
"@material-ui/core": "^4.9.13",
"@material-ui/lab": "^4.0.0-alpha.61",
"@types/pluralize": "^0.0.33",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"react-use": "^17.2.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.2.0",
"react-router": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.27.1",
"@backstage/core-app-api": "^1.15.0",
"@backstage/dev-utils": "^1.1.1",
"@backstage/test-utils": "^1.6.0",
"@spotify/prettier-config": "^14.1.6",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
"@types/lodash": "^4.14.202",
"@types/node": "*",
"@types/pluralize": "^0.0.33",
"cross-fetch": "^3.1.5",
"msw": "^1.0.0",
"prettier": "^2.2.1",
"standard-version": "^9.5.0"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"files": [
"dist",
"config.d.ts"
],
"resolutions": {
"@yarnpkg/parsers": "3.0.0-rc.48.1"
},
"configSchema": "config.d.ts"
}