This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "basic-electron-react-boilerplate",
"description": "A basic Electron-React boilerplate",
"version": "0.1.0",
"private": true,
"author": "Thomas T. (https://github.com/Spooky12/)",
"repository": "https://github.com/Spooky12/basic-electron-react-boilerplate",
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"electron-is-dev": "^1.2.0",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-dev": "concurrently \"set BROWSER=none&&npm start\" \"wait-on http://localhost:3000 && electron .\"",
"preelectron-pack": "npm run build",
"electron-pack": "electron-builder",
"electron-dist": "electron-builder --dir"
},
"devDependencies": {
"concurrently": "^5.1.0",
"electron": "^8.2.3",
"electron-builder": "^22.5.1",
"typescript": "^3.8.3",
"wait-on": "^4.0.2"
},
"build": {
"appId": "com.rlp",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"extraResources": [
{
"from": "extraResources",
"to": "extraResources"
}
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}