@yugabytedb/perf-advisor-ui 1.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "@yugabytedb/perf-advisor-ui",
3
+ "version": "1.0.0-alpha.1",
4
+ "main": "dist/cjs/index.js",
5
+ "types": "dist/types.d.ts",
6
+ "author": "Rajagopalan Madhavan",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "license": "MIT",
13
+ "devDependencies": {
14
+ "@rollup/plugin-commonjs": "^24.1.0",
15
+ "@rollup/plugin-image": "2.1.1",
16
+ "@rollup/plugin-json": "6.0.0",
17
+ "@rollup/plugin-node-resolve": "^15.0.2",
18
+ "@rollup/plugin-replace": "5.0.2",
19
+ "@rollup/plugin-terser": "0.4.4",
20
+ "@rollup/plugin-typescript": "^11.1.0",
21
+ "@testing-library/jest-dom": "^5.16.5",
22
+ "@testing-library/user-event": "^13.5.0",
23
+ "@types/mui-datatables": "3.7.4",
24
+ "@typescript-eslint/eslint-plugin": "5.62.0",
25
+ "@typescript-eslint/parser": "5.62.0",
26
+ "eslint-config-prettier": "8.3.0",
27
+ "eslint-plugin-import": "2.23.4",
28
+ "rollup": "2.79.1",
29
+ "rollup-plugin-dts": "4.2.3",
30
+ "rollup-plugin-peer-deps-external": "2.2.4",
31
+ "rollup-plugin-postcss": "^4.0.2",
32
+ "rollup-plugin-visualizer": "5.12.0",
33
+ "standard-version": "9.5.0"
34
+ },
35
+ "dependencies": {
36
+ "@material-ui/core": "4.12.3",
37
+ "@material-ui/icons": "4.11.2",
38
+ "@material-ui/lab": "4.0.0-alpha.58",
39
+ "@svgr/rollup": "6.5.1",
40
+ "@types/lodash-es": "4.17.6",
41
+ "@types/node": "18.14.0",
42
+ "@types/react": "17.0.4",
43
+ "@types/react-dom": "17.0.3",
44
+ "@types/react-router": "3.0.24",
45
+ "@types/react-router-dom": "5.3.3",
46
+ "axios": "0.21.3",
47
+ "clsx": "1.1.1",
48
+ "date-fns": "2.30.0",
49
+ "date-fns-tz": "2.0.1",
50
+ "highlight.js": "11.7.0",
51
+ "lodash-es": "4.17.21",
52
+ "material-ui-pickers-v4": "3.3.12",
53
+ "mui-datatables": "3.8.5",
54
+ "plotly.js": "2.28.0",
55
+ "prettier": "2.1.0",
56
+ "react": "17.0.2",
57
+ "react-dom": "17.0.2",
58
+ "react-hook-form": "7.40.0",
59
+ "react-i18next": "12.2.0",
60
+ "react-query": "3.32.1",
61
+ "react-router": "3.2.6",
62
+ "react-router-dom": "5.3.3",
63
+ "react-toastify": "7.0.3",
64
+ "typescript": "4.9.3",
65
+ "vis-timeline": "^7.7.3",
66
+ "web-vitals": "2.1.4"
67
+ },
68
+ "prettier": {
69
+ "printWidth": 100,
70
+ "singleQuote": true,
71
+ "trailingComma": "none"
72
+ },
73
+ "peerDependencies": {
74
+ "@material-ui/core": "4.12.3",
75
+ "@material-ui/icons": "4.11.2",
76
+ "@material-ui/lab": "4.0.0-alpha.58",
77
+ "react": "17.0.2",
78
+ "react-dom": "17.0.2",
79
+ "react-query": "3.32.1"
80
+ },
81
+ "scripts": {
82
+ "start": "rollup start",
83
+ "build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
84
+ "build:dev": "NODE_ENV=development rollup -c --bundleConfigAsCjs",
85
+ "changelog": "standard-version",
86
+ "release": "npm install && npm run build && npm publish"
87
+ },
88
+ "eslintConfig": {
89
+ "extends": [
90
+ "react-app",
91
+ "react-app/jest"
92
+ ]
93
+ },
94
+ "browserslist": {
95
+ "production": [
96
+ ">0.2%",
97
+ "not dead",
98
+ "not op_mini all"
99
+ ],
100
+ "development": [
101
+ "last 1 chrome version",
102
+ "last 1 firefox version",
103
+ "last 1 safari version"
104
+ ]
105
+ },
106
+ "publishConfig": {
107
+ "access": "public"
108
+ }
109
+ }