-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "lcd-simulator-electron",
"version": "v1.0.0-rc2",
"private": true,
"author": "Tobias Ganzhorn",
"description": "Simple LCD-Simulator for the Mikrocontroller-Labor-Board.",
"dependencies": {
"electron-is-dev": "^1.2.0"
},
"license": "MIT",
"scripts": {
"start": "concurrently -k \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electronmon .\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"bundle": "npm run build && electron-builder --x64 --ia32 -w -c.extraMetadata.main=build/electron.js",
"react-start": "react-scripts 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": {
"@fluentui/react": "^8.18.0",
"@fluentui/react-hooks": "^8.3.2",
"@types/node": "^14.17.3",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/uuid": "^8.3.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"electron": "^13.0.0",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.2.0",
"electronmon": "^1.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"react-scripts": "4.0.3",
"typescript": "^4.3.2",
"uuid": "^8.3.2",
"wait-on": "^5.3.0"
},
"homepage": "./",
"main": "./public/electron.js",
"build": {
"appId": "com.electron.lcd-simulator",
"productName": "LCD-Simulator",
"files": [
"build/",
"node_modules/"
],
"directories": {
"buildResources": "./public"
},
"nsis": {
"artifactName": "${productName}-${version}-installer.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "./public/ms-icon-310x310.png"
}
}
}