-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.38 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.38 KB
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
{
"name": "sleuth",
"productName": "Sleuth",
"version": "3.14.7",
"description": "Slack Log Viewer",
"main": ".vite/build/index.js",
"type": "commonjs",
"engines": {
"node": ">=22"
},
"scripts": {
"tsc": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint && oxfmt --check",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"start": "electron-forge start",
"test": "vitest",
"catapult:update": "git submodule foreach git pull origin master",
"lint:fix": "oxlint --fix && oxfmt",
"prepare": "husky"
},
"keywords": [],
"author": "Felix Rieseberg <felix@felixrieseberg.com>",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@date-fns/tz": "^1.4.1",
"antd": "^5.25.3",
"chart.js": "3.5.0",
"chartjs-adapter-date-fns": "^2.0.0",
"chartjs-plugin-zoom": "^1.1.1",
"classnames": "2.2.6",
"date-fns": "4.1.0",
"debug": "4.3.1",
"electron-devtools-installer": "4.0.0",
"electron-squirrel-startup": "1.0.0",
"electron-window-state": "5.0.3",
"fs-extra": "9.0.1",
"jsonic": "1.0.1",
"lodash": "^4.17.23",
"lz-string": "^1.4.4",
"mobx": "5.15.7",
"mobx-react": "patch:mobx-react@npm%3A6.3.0#~/.yarn/patches/mobx-react-npm-6.3.0-e118b28c32.patch",
"react": "^17.0.1",
"react-autobind": "^1.0.6",
"react-dom": "^17.0.1",
"react-json-tree": "0.18.0",
"react-keydown": "1.9.12",
"react-virtualized": "patch:react-virtualized@npm%3A9.22.5#~/.yarn/patches/react-virtualized-npm-9.22.5-be95b8e1a8.patch",
"tmp": "0.2.4",
"tslib": "^2.8.1",
"update-electron-app": "^2.0.1",
"vitest": "^3.1.3",
"yauzl": "2.10.0"
},
"devDependencies": {
"@electron-forge/cli": "8.0.0-alpha.3",
"@electron-forge/maker-deb": "8.0.0-alpha.3",
"@electron-forge/maker-rpm": "8.0.0-alpha.3",
"@electron-forge/maker-squirrel": "8.0.0-alpha.3",
"@electron-forge/maker-zip": "8.0.0-alpha.3",
"@electron-forge/plugin-auto-unpack-natives": "8.0.0-alpha.3",
"@electron-forge/plugin-vite": "8.0.0-alpha.3",
"@electron-forge/publisher-github": "8.0.0-alpha.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.2",
"@types/classnames": "^2.2.11",
"@types/debug": "4.1.5",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/fs-extra": "^9.0.4",
"@types/lz-string": "^1.3.34",
"@types/node": "^22.14.0",
"@types/react": "^16.9.56",
"@types/react-dom": "^17.0.0",
"@types/react-virtualized": "^9.21.10",
"@types/semver": "^7.3.4",
"@types/tmp": "0.2.0",
"@types/yauzl": "^2.10.0",
"@vitejs/plugin-react": "^4.5.0",
"electron": "38.2.2",
"husky": "^9.0.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.3.2",
"node-abi": "^3.45.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.0.0",
"rollup-plugin-copy": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "5.1.6",
"vite": "^5.4.21"
},
"resolutions": {
"@types/react": "16.14.43",
"mobx-react-lite": "2.2.0",
"@electron/rebuild": "3.6.2"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"oxlint --fix",
"oxfmt"
],
"*.{yml,yaml,css}": [
"oxfmt"
]
},
"packageManager": "yarn@4.12.0",
"dependenciesMeta": {
"electron": {
"built": true
},
"electron-winstaller": {
"built": true
}
}
}