-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 3.03 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
122
123
124
125
{
"name": "kafmira",
"version": "1.0.0",
"description": "\"An Apache Kafka monitoring tool\"",
"main": "main.js",
"scripts": {
"start": "electron . --no-sandbox .",
"watch": "webpack --config webpack.config.js --watch",
"build": "electron-builder build -mwl"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Kafmira"
},
"author": "SSHK Technology Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gibran-Haq/Kafmira/issues"
},
"homepage": "https://github.com/Gibran-Haq/Kafmira#readme",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.2.3",
"@mui/styled-engine-sc": "^5.1.0",
"@mui/styles": "^5.2.3",
"@mui/system": "^5.2.6",
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"chart.js": "^3.6.2",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron-devtools-installer": "^3.2.0",
"electron-is-dev": "^2.0.0",
"electron-reload": "^2.0.0-alpha.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"react": "^17.0.2",
"react-animations": "^1.0.0",
"react-chartjs-2": "^4.0.0",
"react-devtools-electron": "^4.7.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.0",
"style-loader": "^3.3.1",
"styled-components": "^5.3.3",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"devDependencies": {
"electron": "^25.3.2",
"electron-builder": "^24.6.3"
},
"build": {
"appId": "KafMira",
"productName": "KafMira",
"copyright": "SSHK Technology Group",
"directories": {
"app": ".",
"output": "dist",
"buildResources": "logo"
},
"files": [
"package.json",
"**/*",
"node_modules",
"!README.md",
"!.gitignore",
"Tests"
],
"dmg": {
"background": null,
"backgroundColor": "#ffffff",
"window": {
"width": "400",
"height": "300"
},
"contents": [
{
"x": 100,
"y": 100
},
{
"x": 300,
"y": 100,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": "dmg",
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
}
}