This repository has been archived by the owner on Jun 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
95 lines (95 loc) · 2.86 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
{
"name": "multrin",
"version": "1.3.0",
"description": "Tabbed window organizer",
"keywords": [
"organizer",
"tabs",
"material",
"electron",
"react",
"mobx",
"styled-components"
],
"homepage": "https://github.com/sentialx/multrin#readme",
"main": "build/main.bundle.js",
"author": "Eryk Rakowski <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/sentialx/multrin.git"
},
"bugs": {
"url": "https://github.com/sentialx/multrin/issues"
},
"scripts": {
"watch": "concurrently \"cross-env ENV='dev' webpack-dev-server --config webpack.config.renderer.js\" \" cross-env ENV='dev' webpack\"",
"build": "concurrently \"webpack --config webpack.config.renderer.js\" \"webpack\"",
"start": "cross-env ENV='dev' electron .",
"compile-win32": "npm run build && electron-builder -w -p always",
"compile-darwin": "npm run build && electron-builder -m -p always",
"compile-linux": "npm run build && electron-builder -l -p always",
"compile": "node scripts/compile.js",
"lint": "eslint \"src/**/*.ts*\" \"src/**/*.tsx*\"",
"lint-fix": "npm run lint -- --fix",
"rebuild": "electron-builder install-app-deps"
},
"devDependencies": {
"@types/gsap": "1.20.2",
"@types/node": "13.11.1",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/styled-components": "5.1.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"cache-loader": "^4.1.0",
"concurrently": "^5.1.0",
"cross-env": "7.0.2",
"electron": "^8.2.4",
"electron-builder": "^22.5.1",
"electron-updater": "^4.2.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"gsap": "3.2.6",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^4.2.0",
"mobx": "5.15.4",
"mobx-react-lite": "^2.0.6",
"node-vibrant": "^3.1.5",
"prettier": "2.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hot-loader": "4.12.20",
"react-windows-controls": "1.1.1",
"styled-components": "^5.1.0",
"ts-loader": "^7.0.0",
"typescript": "3.8.3",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"iohook": "^0.6.5",
"node-window-manager": "^2.2.1",
"extract-file-icon": "0.3.2"
},
"iohook": {
"targets": [
"node-72",
"electron-76"
],
"platforms": [
"win32",
"darwin"
],
"arches": [
"x64",
"ia32"
]
}
}