-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
137 lines (137 loc) Β· 3.34 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
131
132
133
134
135
136
137
{
"name": "spacedrop",
"productName": "Spacedrop",
"version": "0.0.1",
"private": true,
"description": "A decentralized end-to-end encrypted messaging app",
"license": "MIT",
"repository": "hr/spacedrop",
"homepage": "./",
"author": {
"name": "Habib Rehman",
"email": "[email protected]",
"url": "https://github.com/HR"
},
"main": "./src/main/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"rebuild": "electron-rebuild -f .",
"test": "npm run lint",
"start": "{ npm run bundle & gulp; }",
"bundler": "BROWSER=none webpack serve --mode development --env development",
"bundle": "webpack --mode production",
"electron": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder --macos --linux --windows",
"build:mac": "electron-builder -m",
"build:lin": "electron-builder -l --x64 --ia32",
"build:win": "electron-builder -w --x64 --ia32",
"release": "np"
},
"dependencies": {
"bootstrap": "^4.6.0",
"brake": "^1.0.1",
"electron-context-menu": "^2.5.0",
"electron-debug": "^3.2.0",
"electron-store": "^7.0.2",
"electron-unhandled": "^3.0.2",
"electron-util": "^0.14.2",
"filesize": "^6.1.0",
"futoin-hkdf": "^1.3.3",
"keytar": "^7.4.0",
"moment": "^2.29.1",
"progress-stream": "^2.0.0",
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1",
"tweetnacl": "^1.0.3",
"update-electron-app": "^2.0.1",
"wrtc": "^0.4.7",
"ws": "^7.4.3"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.13.9",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.1",
"electron": "^12.0.0",
"electron-builder": "^22.10.5",
"electron-rebuild": "^2.3.5",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-watch": "^5.0.1",
"html-loader": "^2.1.1",
"html-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"np": "^7.4.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"eslintConfig": {
"extends": "react-app"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "com.hr.spacedrop",
"mac": {
"category": "public.app-category.social-networking",
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network;Chat"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"bootstrap": "^4.6.0",
"react-bootstrap": "^1.5.1"
}
}