-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "electron-chat-app",
"version": "1.0.0",
"description": "Chat app implemented in electron",
"main": "./public/electron.js",
"scripts": {
"start": "node server",
"dev": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder --win --linux"
},
"author": "Chinmay Dixit <chinmayvd20@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"electron-is-dev": "^1.2.0",
"express": "^4.17.1",
"moment": "^2.27.0",
"mongoose": "^5.9.20",
"socket.io": "^2.3.0"
},
"devDependencies": {
"electron": "^9.0.5",
"electron-builder": "^22.7.0",
"nodemon": "^2.0.4"
},
"build": {
"appId": "com.electron.chatApp",
"productName": "Electron Chat App",
"files": [
"./public/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "./public"
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"deb"
]
}
}
}