This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 4.22 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
{
"name": "electron-desktop",
"version": "1.0.0",
"description": "Electron Desktop Application",
"main": "build/main.js",
"repository": "https://github.com/ShaharHD/electron-react-webpack-typescript-vscode-debug.git",
"author": "Shahar Hadas <shaharhd@gmail.com>",
"license": "MIT",
"scripts": {
"electron": "cross-env ELECTRON_DISABLE_SECURITY_WARNINGS=true ELECTRON_IS_DEV=1 electron .",
"build": "webpack --progress --mode=development",
"watch": "webpack --progress --mode=development --watch",
"build-production": "webpack --progress --mode=production",
"clean": "rimraf build",
"rebuild": "npm-run-all clean build",
"electron-build": "electron-builder",
"electron-build-mac": "electron-builder --mac",
"electron-build-win": "electron-builder --win",
"electron-build-linux": "electron-builder --linux",
"electron-build-all": "electron-builder --mac --win --linux",
"pack": "electron-builder --dir",
"dist": "npm-run-all clean build-production electron-build",
"dist-mac": "npm-run-all clean build-production electron-build-mac",
"dist-win": "npm-run-all clean build-production electron-build-win",
"dist-linux": "npm-run-all clean build-production electron-build-linux",
"dist-all": "npm-run-all clean build-production electron-build-all",
"lint-ts": "tslint 'src/**/*.{ts,tsx}'",
"lint-js": "eslint '*.js'",
"lint": "npm-run-all lint-ts lint-js",
"postinstall": "electron-builder install-app-deps"
},
"engines": {
"node": ">=8.x",
"npm": "6.x",
"yarn": "1.x"
},
"build": {
"productName": "Electron Desktop Application",
"appId": "com.electron.example",
"directories": {
"output": "release/"
},
"files": [
"build/**/*"
],
"mac": {
"target": "dmg"
},
"linux": {
"target": "deb"
},
"win": {
"target": [
"nsis",
"portable"
]
}
},
"devDependencies": {
"@types/copy-webpack-plugin": "^8.0.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/eslint": "^7.2.10",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/node-sass": "^4.11.1",
"@types/optimize-css-assets-webpack-plugin": "^5.0.3",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.1",
"@types/rimraf": "^3.0.0",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack-node-externals": "^2.5.1",
"animate.css": "^4.1.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"electron": "^12.0.9",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.2.0",
"electron-reload": "^1.5.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "^2.23.2",
"extract-css-chunks-webpack-plugin": "^4.9.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"node-sass": "^6.0.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"postcss-loader": "^5.3.0",
"rimraf": "^3.0.2",
"sass-lint": "^1.13.1",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^9.2.1",
"ts-node": "^9.1.1",
"tslint-config-prettier": "^1.18.0",
"typeface-heebo": "^1.1.13",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-log": "^3.0.2",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^3.0.0",
"webpack-null-plugin": "^0.0.2"
},
"dependencies": {
"actuatejs": "^1.0.2",
"electron-is-dev": "^2.0.0",
"electron-pug": "^2.0.0",
"electron-store": "^8.0.0",
"electron-window-state": "^5.0.3",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"systeminformation": "^5.6.22",
"tslib": "^2.2.0"
}
}