This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.76 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
{
"name": "GIT8",
"version": "0.0.1",
"private": true,
"homepage": "./",
"main": "./electron/main.js",
"scripts": {
"dev": "webpack-dev-server --hot --host 0.0.0.0 --port 3000 --config=./webpack.dev.config.js --mode development",
"build": "webpack --config webpack.build.config.js --mode production --progress",
"package": "webpack --config webpack.build.config.js --mode production --progress && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder",
"package-all": "webpack --config webpack.build.config.js --mode production --progress && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac --linux --win"
},
"dependencies": {
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"electron-util": "^0.14.2",
"menubar": "^9.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-switch": "^5.0.1",
"react-top-loading-bar": "^2.0.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rendition": "^18.13.1",
"styled-components": "^5.2.0",
"styled-icons": "^10.22.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-loader": "^8.1.0",
"babili-webpack-plugin": "^0.1.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "3.6.5",
"css-loader": "^5.0.0",
"dotenv-webpack": "^4.0.0",
"electron": "^9.3.1",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.1.1",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"eslintConfig": {
"extends": "react-app"
},
"build": {
"appId": "io.github.git8",
"productName": "GIT8",
"asar": true,
"directories": {
"output": "dist",
"buildResources": "resources"
},
"files": [
"build/**/*",
"electron/**/*",
"config/**/*",
"resources/**/*",
"LICENSE"
],
"artifactName": "${name}-${os}-${version}.${ext}",
"mac": {
"target": [
"zip",
"dmg"
]
},
"win": {
"target": [
"nsis",
"msi"
],
"publisherName": "GIT8"
},
"linux": {
"category": "Network",
"description": "GIT8",
"desktop": {
"Name": "GIT8",
"GenericName": "GIT8",
"X-GNOME-FullName": "GIT8",
"Comment": "GIT8",
"Type": "Application",
"Terminal": "false",
"StartupNotify": "false",
"Categories": "Network;"
},
"target": [
"deb",
"AppImage"
]
},
"publish": null
}
}