forked from cilium/hubble-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.82 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hubble-ui",
"private": true,
"scripts": {
"test": "jest",
"prepare": "husky install",
"postinstall": "patch-package && bash ./scripts/post-install.sh",
"watch:server": "servor ./server/public index.html 8080",
"watch:client": "NODE_ENV=development webpack --progress",
"watch": "run-p watch:*",
"build": "NODE_ENV=production webpack",
"lint:ts": "eslint --ignore-path .gitignore \"./src/**/*.{ts,tsx,js,jsx,mjs}\"",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:scss": "stylelint --ignore-path .gitignore \"./**/*.scss\"",
"lint:scss:fix": "npm run lint:scss -- --fix",
"upgrade-deps": "ncu --interactive --format group"
},
"lint-staged": {
"./src/!(proto)/**/*.{ts,tsx,js,jsx,mjs}": [
"npm run --silent lint:ts:fix"
],
"./src/**/*.scss": [
"npm run --silent lint:scss:fix"
]
},
"dependencies": {
"@babel/runtime": "7.23.5",
"@blueprintjs/core": "5.7.1",
"@blueprintjs/icons": "5.4.1",
"@blueprintjs/select": "5.0.19",
"@react-hook/resize-observer": "1.2.6",
"@use-gesture/react": "10.3.0",
"classnames": "2.3.2",
"core-js": "3.33.3",
"d3": "7.8.5",
"date-fns": "2.30.0",
"decompress": "4.2.1",
"google-protobuf": "3.21.2",
"grpc-web": "1.5.0",
"history": "5.3.0",
"lodash": "4.17.21",
"mobx": "6.12.0",
"mobx-react": "9.1.0",
"pluralize": "8.0.0",
"prop-types": "15.8.1",
"query-string": "8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.20.1",
"react-spring": "9.7.3",
"react-window": "1.8.10",
"url-parse": "1.5.10"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-runtime": "7.23.4",
"@babel/preset-env": "7.23.5",
"@babel/preset-react": "7.23.3",
"@geakstr/sass-inline-svg": "1.0.0",
"@testing-library/react": "14.1.2",
"@types/d3": "7.4.3",
"@types/google-protobuf": "3.15.12",
"@types/jest": "29.5.10",
"@types/lodash": "4.14.202",
"@types/object-hash": "3.0.6",
"@types/pluralize": "0.0.33",
"@types/prop-types": "15.7.11",
"@types/react": "18.2.41",
"@types/react-dom": "18.2.17",
"@types/react-test-renderer": "18.0.7",
"@types/react-window": "1.8.8",
"@types/route-parser": "0.1.7",
"@types/url-parse": "1.4.11",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"ajv": "8.12.0",
"autoprefixer": "10.4.16",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"circular-dependency-plugin": "5.2.2",
"css-loader": "6.8.1",
"dotenv-webpack": "8.0.1",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"fs-extra": "11.2.0",
"html-webpack-plugin": "5.5.3",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.0",
"mini-css-extract-plugin": "2.7.6",
"node-fetch": "3.3.2",
"npm-check-updates": "16.14.11",
"npm-run-all": "4.1.5",
"patch-package": "8.0.0",
"prettier": "3.1.0",
"react-test-renderer": "18.2.0",
"sass": "1.69.5",
"sass-loader": "13.3.2",
"servor": "4.0.2",
"source-map-explorer": "2.5.3",
"source-map-loader": "4.0.1",
"stylelint": "15.11.0",
"stylelint-config-css-modules": "4.3.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-scss": "5.3.1",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"ts-protoc-gen": "0.15.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.3.2",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}