-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (98 loc) · 2.61 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
{
"name": "ReactChat", // This will be great for attartcing users with something modern
"version": "1.0.0", // For minor fixes increase the 2nd position, for a major update increase the 1st position, for bug fixes and other --> the 3rd position (left to right)
"description": "This chat app connect people that want a simple and modern experience along with ease of use.", // Attract the right target audience
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "webpack --config webpack.common.js --watch",
"build": "webpack --config webpack.prod.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"make:linux": "electron-builder --linux",
"make:macos": "electron-builder --mac",
"make:win": "electron-builder --win --x64"
},
"author": "Andrew Riefenstahl",
"license": "ISC",
"build": {
"productName": "Chat App",
"appId": "com.riefer.chatapp",
"files": [
"build/**/*",
"assets/**/*",
"utils/**/*",
"index.html",
"splash.html",
"splash.css",
"main.js",
"preload.js"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/images/react_app_logo.png",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 430,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "assets/images/react_app_logo.png",
"target": [
"nsis"
]
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Development"
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"dotenv-webpack": "^6.0.0",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"electron-reload": "^1.5.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@reduxjs/toolkit": "^1.5.0",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.2",
"css-loader": "^5.0.1",
"firebase": "^8.2.1",
"moment": "^2.29.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.14.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}
// Remove the comments after stable release