-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.81 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
{
"name": "tunnelgo",
"version": "0.1.0",
"license": "MIT",
"description": "Offline, File share and instant messaging app",
"repository": {
"type": "git",
"url": "https://github.com/alicanerdurmaz/wsftp-gui.git"
},
"main": "public/electron.js",
"author": "Alican Erdurmaz <[email protected]>",
"dependencies": {
"@craco/craco": "^5.5.0",
"@material-ui/core": "^4.8.3",
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.2.0",
"node-sass": "^4.12.0",
"notistack": "^0.9.7",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-scripts": "3.1.2",
"react-textarea-autosize": "^7.1.2",
"uuid": "^3.3.3"
},
"build": {
"appId": "com.emrealican.tunnelgo",
"files": [
"src/public/electron.js",
"src/assets/*",
"build/**/*",
"src/backend/api/*"
],
"linux": {
"target": "AppImage",
"icon": "src/assets/logo.png",
"category": "Productivity"
}
},
"homepage": "./",
"scripts": {
"start": "concurrently \"cross-env BROWSER=none yarn craco start\" \"wait-on http://localhost:3000 && electron . \"",
"test": "craco test",
"eject": "craco eject",
"electron-build": "electron-builder -l",
"clean-build": "rm -rf build/ .cache dist/",
"build": "yarn clean-build && yarn craco build && yarn electron-build",
"deploy": "yarn build --publish always"
},
"keywords": [
"Electron",
"file share",
"instant messaging",
"react",
"go"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^4.1.2",
"cross-env": "^6.0.0",
"electron": "^7.2.4",
"electron-builder": "^22.3.2",
"normalize.css": "^8.0.1",
"wait-on": "^3.3.0"
}
}