-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
86 lines (86 loc) · 2.84 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
{
"name": "palaemon",
"version": "1.0.0",
"description": "- A gentle, euthanization and diagnosis tool for out-of-memory (OOM) kubernetes pods. - Palaemon is a Greek, childe sea-god who came to aid sailors in distress. He was often depicted as riding a dolphin. Also, a genus of shrimp.",
"scripts": {
"build": "webpack --watch --config ./webpack.config.js",
"build:production": "webpack --config ./webpack.production.js",
"rmdir": "node -e \"var fs = require('fs'); process.argv.slice(1).map((fpath) => fs.rmdirSync(fpath, { recursive: true })); process.exit(0);\"",
"clean:prebuild": "npm run rmdir -- dist",
"dev": "concurrently \"webpack --watch --config ./webpack.config.js\" \"wait-on ./dist/electron/main.js && electronmon ./dist/electron/main.js\"",
"electronmon": "electronmon ./dist/electron/main.js",
"start": "npm run clean:prebuild && npm run dev",
"start:production": "npm run build:production && electron ./dist/electron/main.js",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Palaemon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/Palaemon/issues"
},
"homepage": "https://github.com/oslabs-beta/Palaemon#readme",
"browser": {
"child_process": false
},
"dependencies": {
"@kubernetes/client-node": "^0.17.0",
"ajv": "^7.2.4",
"chart.js": "^3.9.1",
"child_process": "^1.0.2",
"node-fetch": "^2.2.10",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sass": "^1.54.8",
"typescript": "^4.8.3"
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.3",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"concurrently": "^7.3.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"electron": "^20.1.0",
"electron-builder": "^23.3.3",
"electron-devtools-installer": "^3.2.0",
"electronmon": "^2.0.2",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"jest": "^29.0.3",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.0.3",
"playwright": "^1.25.2",
"postcss-loader": "^7.0.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.1",
"ts-loader": "^9.3.1",
"wait-on": "^6.0.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"electronmon": {
"patterns": [
"dist/**/*",
"!client/**/*",
"!electron/**/*",
"!__tests__/**/*",
"!__mocks__/**/*",
"!journal/**/*",
"!node_modules/**/*"
]
}
}