FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/ui/package.json at master · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
218
Pull requests
191
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
ui
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
161 lines (161 loc) · 5.12 KB
Breadcrumbs
feast
/
ui
/
package.json
Copy path
File metadata and controls
161 lines (161 loc) · 5.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name"
:
"
@feast-dev/feast-ui
"
,
"version"
:
"
0.66.0
"
,
"private"
:
false
,
"files"
: [
"
dist
"
],
"main"
:
"
./dist/feast-ui.cjs
"
,
"types"
:
"
./dist/FeastUI.d.ts
"
,
"module"
:
"
./dist/feast-ui.module.js
"
,
"peerDependencies"
: {
"@elastic/eui"
:
"
^95.12.0
"
,
"@emotion/react"
:
"
^11.13.3
"
,
"react"
:
"
^17.0.2 || ^18.0.0
"
,
"react-dom"
:
"
^17.0.2 || ^18.0.0
"
},
"peerDependenciesMeta"
: {
"@elastic/eui"
: {
"optional"
:
true
},
"@emotion/react"
: {
"optional"
:
true
}
},
"dependencies"
: {
"@elastic/datemath"
:
"
^5.0.3
"
,
"@elastic/eui"
:
"
^95.12.0
"
,
"@elastic/eui-theme-borealis"
:
"
1.0.0
"
,
"@emotion/css"
:
"
^11.13.0
"
,
"@emotion/react"
:
"
^11.13.3
"
,
"@types/dagre"
:
"
^0.7.52
"
,
"@types/styled-components"
:
"
^5.1.34
"
,
"dagre"
:
"
^0.8.5
"
,
"inter-ui"
:
"
^3.19.3
"
,
"keycloak-js"
:
"
^26.2.4
"
,
"long"
:
"
^5.2.3
"
,
"moment"
:
"
^2.29.1
"
,
"protobufjs"
:
"
^7.1.1
"
,
"query-string"
:
"
^7.1.1
"
,
"react-app-polyfill"
:
"
^3.0.0
"
,
"react-code-blocks"
:
"
^0.1.6
"
,
"react-query"
:
"
^3.39.3
"
,
"react-router-dom"
:
"
^6.28.0
"
,
"reactflow"
:
"
^11.11.4
"
,
"tslib"
:
"
^2.3.1
"
,
"use-query-params"
:
"
^2.2.1
"
,
"zod"
:
"
^3.11.6
"
},
"scripts"
: {
"start"
:
"
npm run generate-protos && node scripts/start.js
"
,
"build"
:
"
npm run generate-protos && node scripts/build.js
"
,
"build:lib"
:
"
npm run generate-protos && rimraf ./dist && tsc --project ./tsconfig.build-lib.json && rollup -c
"
,
"build:lib-dev"
:
"
npm run build:lib && yalc publish -f
"
,
"test"
:
"
npm run generate-protos && node scripts/test.js
"
,
"format"
:
"
prettier --write .
"
,
"format:check"
:
"
prettier --check .
"
,
"generate-protos"
:
"
pbjs --no-encode -o src/protos.js -w commonjs -t static-module --path ../protos `find ../protos/feast/ -iname *.proto` && pbts -n protos -o src/protos.d.ts src/protos.js
"
},
"browserslist"
: [
"
defaults
"
],
"devDependencies"
: {
"@babel/core"
:
"
^7.25.8
"
,
"@babel/plugin-proposal-private-property-in-object"
:
"
^7.21.11
"
,
"@babel/preset-env"
:
"
^7.25.8
"
,
"@babel/preset-react"
:
"
^7.25.7
"
,
"@happy-dom/jest-environment"
:
"
^16.7.3
"
,
"@pmmmwh/react-refresh-webpack-plugin"
:
"
^0.5.3
"
,
"@rollup/plugin-babel"
:
"
^5.3.1
"
,
"@rollup/plugin-commonjs"
:
"
^21.0.2
"
,
"@rollup/plugin-json"
:
"
^4.1.0
"
,
"@rollup/plugin-node-resolve"
:
"
^13.1.3
"
,
"@rollup/plugin-typescript"
:
"
^8.3.1
"
,
"@svgr/webpack"
:
"
^8.1.0
"
,
"@testing-library/dom"
:
"
^10.4.0
"
,
"@testing-library/jest-dom"
:
"
^6.5.0
"
,
"@testing-library/react"
:
"
^16.0.1
"
,
"@testing-library/user-event"
:
"
^14.5.2
"
,
"@types/jest"
:
"
^27.0.1
"
,
"@types/minimatch"
:
"
^6.0.0
"
,
"@types/node"
:
"
^22.12.0
"
,
"@types/react"
:
"
^18.3.11
"
,
"@types/react-dom"
:
"
^18.3.0
"
,
"babel-jest"
:
"
^27.4.2
"
,
"babel-loader"
:
"
^8.2.3
"
,
"babel-plugin-named-asset-import"
:
"
^0.3.8
"
,
"babel-preset-react-app"
:
"
^10.0.1
"
,
"bfj"
:
"
^7.0.2
"
,
"browserslist"
:
"
^4.18.1
"
,
"camelcase"
:
"
^6.2.1
"
,
"case-sensitive-paths-webpack-plugin"
:
"
^2.4.0
"
,
"css-loader"
:
"
^6.5.1
"
,
"css-minimizer-webpack-plugin"
:
"
^3.2.0
"
,
"dotenv"
:
"
^10.0.0
"
,
"dotenv-expand"
:
"
^5.1.0
"
,
"eslint"
:
"
^8.3.0
"
,
"eslint-config-react-app"
:
"
^7.0.1
"
,
"eslint-webpack-plugin"
:
"
^3.1.1
"
,
"file-loader"
:
"
^6.2.0
"
,
"fs-extra"
:
"
^10.0.0
"
,
"html-webpack-plugin"
:
"
^5.5.0
"
,
"identity-obj-proxy"
:
"
^3.0.0
"
,
"jest"
:
"
^29.7.0
"
,
"jest-environment-jsdom"
:
"
^29.7.0
"
,
"jest-resolve"
:
"
^29.7.0
"
,
"jest-watch-typeahead"
:
"
^2.2.2
"
,
"mini-css-extract-plugin"
:
"
^2.4.5
"
,
"minimatch"
:
"
^10.0.3
"
,
"msw"
:
"
^2.7.0
"
,
"postcss"
:
"
^8.4.4
"
,
"postcss-flexbugs-fixes"
:
"
^5.0.2
"
,
"postcss-loader"
:
"
^6.2.1
"
,
"postcss-normalize"
:
"
^10.0.1
"
,
"postcss-preset-env"
:
"
^7.0.1
"
,
"prettier"
:
"
^3.5.3
"
,
"prompts"
:
"
^2.4.2
"
,
"protobufjs-cli"
:
"
^1.1.3
"
,
"react"
:
"
^18.3.1
"
,
"react-dev-utils"
:
"
^12.0.1
"
,
"react-dom"
:
"
^18.3.1
"
,
"react-refresh"
:
"
^0.11.0
"
,
"resolve"
:
"
^1.20.0
"
,
"resolve-url-loader"
:
"
^5.0.0
"
,
"rimraf"
:
"
^3.0.2
"
,
"rollup"
:
"
^2.68.0
"
,
"rollup-plugin-copy"
:
"
^3.5.0
"
,
"rollup-plugin-import-css"
:
"
^3.0.2
"
,
"rollup-plugin-svg"
:
"
^2.0.0
"
,
"rollup-plugin-svgo"
:
"
^2.0.0
"
,
"rollup-plugin-terser"
:
"
^7.0.2
"
,
"sass-loader"
:
"
^12.3.0
"
,
"semver"
:
"
^7.3.5
"
,
"source-map-loader"
:
"
^3.0.0
"
,
"style-loader"
:
"
^3.3.1
"
,
"terser-webpack-plugin"
:
"
^5.2.5
"
,
"typescript"
:
"
~5.7.2
"
,
"webpack"
:
"
^5.64.4
"
,
"webpack-dev-server"
:
"
^4.6.0
"
,
"webpack-manifest-plugin"
:
"
^4.0.2
"
,
"workbox-webpack-plugin"
:
"
^6.4.1
"
},
"resolutions"
: {
"nwsapi"
:
"
2.2.13
"
},
"description"
:
"
Web UI for the [Feast Feature Store](https://feast.dev/)
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
git+https://github.com/feast-dev/feast.git
"
},
"keywords"
: [
"
Feast
"
,
"
Feature
"
,
"
Store
"
],
"author"
:
"
tony@feast.ai
"
,
"license"
:
"
Apache-2.0
"
,
"bugs"
: {
"url"
:
"
https://github.com/feast-dev/feast/issues
"
},
"packageManager"
:
"
yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e
"
}
Back
|
FazBrowse Home
|
New Git URL