-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
138 lines (138 loc) · 3.83 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
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "react",
"productName": "Kaptn",
"private": true,
"version": "2.0.1",
"description": "Powerful K8s Development Tool",
"main": "main.js",
"scripts": {
"start": "NODE_ENV='development' electron .",
"dev": "concurrently \"NODE_ENV='development' nodemon server/server.js\" \"NODE_ENV='development' vite dev\" --host 0.0.0.0",
"build": "vite build",
"build:mwl": "vite build && npm run pack",
"build64": "vite build && npm run pack64",
"build:windows": "npm run build && electron-builder --windows --x64",
"build:winportable": "npm run build && electron-builder --win portable --x64",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux --x64",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder -mwl",
"pack64": "electron-builder -mwl --x64",
"preview": "vite preview",
"vite": "vite",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom"
},
"author": {
"name": "Kaptn",
"url": "https://kaptn.io/"
},
"contributors": [
"Brecht Horn",
"Olivia Hodel",
"Hwi Won Choi",
"Natalie Cordoves",
"Yining Wang"
],
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@kubernetes/client-node": "^0.18.1",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.0",
"@visx/curve": "^3.3.0",
"@visx/event": "^3.3.0",
"@visx/gradient": "^3.3.0",
"@visx/grid": "^3.3.0",
"@visx/mock-data": "^3.3.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.3.0",
"@visx/shape": "^3.3.0",
"@visx/tooltip": "^3.3.0",
"@visx/vendor": "^3.3.0",
"concurrently": "^8.0.1",
"fix-path": "^3.0.0",
"nodemon": "^2.0.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pro-sidebar": "^1.0.0",
"react-router-dom": "^6.11.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/node": "^18.16.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^29.5.0",
"electron": "^24.0.0",
"electron-builder": "^24.4.0",
"electron-packager": "^17.1.1",
"esbuild": "^0.19.3",
"https": "^1.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"typescript": "^5.0.4",
"vite": "^4.2.0"
},
"build": {
"appId": "Kaptn",
"productName": "Kaptn",
"asar": true,
"win": {
"target": "nsis",
"icon": "./public/icon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Kaptn",
"perMachine": false,
"deleteAppDataOnUninstall": true,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"menuCategory": true,
"installerLanguages": [
"en_US"
]
},
"mac": {
"target": "dmg",
"icon": "./public/icon.icns",
"category": "public.app-category.developer-tools"
},
"dmg": {
"icon": "./public/icon.icns",
"title": "Kaptn",
"background": "./public/dmgbackground.tiff"
},
"linux": {
"icon": "./public/icon.icns",
"target": "AppImage"
},
"directories": {
"buildResources": "assets"
},
"files": [
"package.json",
"dist/**/*",
"node_modules",
"main.js"
]
}
}