-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.18 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
{
"name": "ringer",
"productName": "Ringer",
"version": "5.1.0",
"private": true,
"main": "main.js",
"author": {
"name": "Lif Platforms",
"email": "[email protected]"
},
"publish": {
"provider": "github",
"releaseType": "release"
},
"homepage": "./",
"description": "Say hello with Ringer!",
"repository": "https://github.com/Lif-Platforms/Ringer-Client-Desktop",
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"electron-log": "^5.1.1",
"electron-notification": "^1.0.0",
"electron-store": "^8.1.0",
"electron-unhandled": "^4.0.1",
"electron-updater": "^6.3.0",
"fs": "^0.0.1-security",
"js-cookie": "^3.0.5",
"net": "^1.0.2",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"react-scripts": "5.0.1",
"wait-on": "^7.2.0",
"web-vitals": "^2.1.4",
"yarn": "^1.22.19"
},
"build": {
"appId": "com.lifplatforms.ringer",
"extends": null,
"publish": "github",
"directories": {
"buildResources": "public",
"output": "dist"
},
"asarUnpack": [
"main.js"
],
"files": [
"build/**/*",
"node_modules/**/*",
"electron/**/*",
"main.js",
"preload.js"
],
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": true,
"icon": "public/icons/mac/icon.icns",
"identity": null
},
"win": {
"target": "nsis",
"icon": "public/icons/win/icon.ico",
"certificateFile": null,
"certificatePassword": null
}
},
"scripts": {
"build": "react-app-rewired build && electron-builder --win --mac",
"build-win": "react-app-rewired build && electron-builder --win",
"build-mac": "react-app-rewired build && electron-builder --mac",
"deploy": "react-app-rewired build && electron-builder --publish=always",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron . --node-version=20.9.0\"",
"start": "react-app-rewired start"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"electron": "29.4.6",
"electron-builder": "^25.1.8",
"electron-builder-notarize": "^1.5.2",
"electron-notarize": "^1.2.2"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}