-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.43 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.43 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@cortexapps/backstage-plugin",
"version": "2.13.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"repository": "github:cortexapps/backstage-plugin",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"scripts": {
"build": "backstage-cli package build",
"start": "backstage-cli package start",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"diff": "backstage-cli plugin:diff",
"prepack": "backstage-cli package prepack",
"prepare": "husky install",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean",
"dev": "yarn watch",
"watch": "npm-watch yalc-push",
"yalc-push": "yarn build && yalc push"
},
"watch": {
"yalc-push": {
"patterns": [
"src"
],
"extensions": "*",
"quiet": true
}
},
"dependencies": {
"@backstage/catalog-model": "^1.5.0",
"@backstage/core-app-api": "^1.12.5",
"@backstage/core-components": "^0.14.7",
"@backstage/core-plugin-api": "^1.9.2",
"@backstage/plugin-catalog-react": "^1.12.0",
"@backstage/theme": "^0.5.5",
"@cortexapps/birdseye": "^2.0.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.45",
"@nivo/core": "0.79.0",
"@nivo/line": "0.79.0",
"@nivo/scales": "0.79.0",
"@tanstack/react-virtual": "^3.0.0-beta.49",
"@types/react-router": "^5.1.16",
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"material-table": "^1.69.2",
"moment": "^2.29.4",
"query-string": "^7.1.0",
"rc-progress": "^3.1.4",
"react-use": "^17.4.0",
"simple-statistics": "^7.7.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0"
},
"devDependencies": {
"@backstage/cli": "^0.26.6",
"@backstage/dev-utils": "^1.0.32",
"@backstage/test-utils": "^1.5.5",
"@cortexapps/backstage-plugin-extensions": "0.0.29",
"@cortexapps/eslint-config-oss": "^0.0.4",
"@spotify/prettier-config": "^11.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.176",
"@types/node": "^14.14.32",
"@types/react-router-dom": "^5.1.8",
"cross-fetch": "^3.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"husky": "^7.0.1",
"jest-canvas-mock": "^2.3.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^11.1.2",
"msw": "^0.21.2",
"npm-watch": "^0.11.0",
"prettier": "2.3.2",
"pretty-quick": "^3.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "6.22.3",
"react-router-dom": "6.22.3"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"files": [
"config.d.ts",
"dist",
"src"
],
"configSchema": "config.d.ts"
}