-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 3.7 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
{
"name": "sleuth",
"productName": "Sleuth",
"version": "2.17.1",
"description": "Slack Log Viewer",
"main": "./dist/src/main/index",
"scripts": {
"tsc": "tsc -p tsconfig.json --noEmit",
"lint": "npm run tsc && tslint -c tslint.json -p tsconfig.json",
"package": "electron-forge package",
"make": "electron-forge make",
"parcel:build": "node ./tools/parcel-build.js",
"parcel:watch": "node ./tools/parcel-watch.js",
"publish": "electron-forge publish",
"start": "rimraf ./dist && electron-forge start",
"test": "npm run lint && jest --config=jest.json --coverage",
"update-snapshots": "jest --config=jest.json --updateSnapshot",
"catapult:update": "git submodule foreach git pull origin master"
},
"keywords": [],
"author": "Felix Rieseberg <felix@felixrieseberg.com>",
"license": "MIT",
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/datetime": "^3.20.0",
"@blueprintjs/select": "^3.15.0",
"classnames": "2.2.6",
"date-fns": "^2.16.1",
"debounce": "^1.2.0",
"debug": "4.3.1",
"electron-context-menu": "2.3.0",
"electron-devtools-installer": "3.1.1",
"electron-squirrel-startup": "1.0.0",
"electron-window-state": "5.0.3",
"fs-extra": "9.0.1",
"jsonic": "1.0.1",
"lodash.throttle": "^4.1.1",
"lz-string": "^1.4.4",
"markdown-it": "12.0.3",
"markdown-it-emoji": "2.0.0",
"markdown-it-highlightjs": "3.4.0",
"mobx": "5.15.7",
"mobx-react": "6.3.0",
"query-string": "6.13.7",
"react": "^17.0.1",
"react-addons-css-transition-group": "15.6.2",
"react-autobind": "^1.0.6",
"react-dom": "^17.0.1",
"react-json-tree": "0.13.0",
"react-keydown": "1.9.12",
"react-linkify": "1.0.0-alpha",
"react-virtualized": "^9.22.2",
"tmp": "0.2.1",
"tslib": "2.0.3",
"update-electron-app": "^2.0.1",
"yauzl": "2.10.0"
},
"devDependencies": {
"@electron-forge/cli": "6.0.0-beta.54",
"@electron-forge/maker-deb": "6.0.0-beta.54",
"@electron-forge/maker-rpm": "6.0.0-beta.54",
"@electron-forge/maker-squirrel": "6.0.0-beta.54",
"@electron-forge/maker-zip": "6.0.0-beta.54",
"@electron-forge/publisher-github": "6.0.0-beta.54",
"@types/chai": "^4.2.14",
"@types/classnames": "^2.2.11",
"@types/date-fns": "^2.6.0",
"@types/debug": "4.1.5",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"@types/lodash.throttle": "^4.1.6",
"@types/lz-string": "^1.3.34",
"@types/node": "^14.14.7",
"@types/query-string": "^6.3.0",
"@types/react": "^16.9.56",
"@types/react-addons-css-transition-group": "^15.0.5",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"@types/react-virtualized": "^9.21.10",
"@types/semver": "^7.3.4",
"@types/tmp": "0.2.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "11.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"jest": "^26.6.3",
"less": "^3.12.2",
"node-abi": "^2.19.3",
"node-fetch": "^2.6.1",
"parcel-bundler": "^1.12.4",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-unused-expression-chai": "0.1.4",
"tslint-react": "^5.0.0",
"typescript": "4.1.2"
},
"optionalDependencies": {
"cachetool": "^1.1.2"
}
}