-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "pears-streaming-client",
"version": "0.0.2",
"description": "Application de streaming avec react et electron js",
"author": {
"name": "Guillaume Vandriessche",
"email": "Guillaumevandriessche776@gmail.com"
},
"main": "main_process/app.js",
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/guillaumevd/electronjs_streaming_client.git"
},
"scripts": {
"build": "rimraf build dist && yarn version --patch && react-scripts build && electron-builder",
"serve": "concurrently -k \"cross-env BROWSER=none react-scripts start\" \"yarn start\"",
"start": "wait-on tcp:127.0.0.1:3000 && cross-env-shell NODE_ENV=dev electron ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version"
]
},
"dependencies": {
"@electron/remote": "1.0.2",
"babel": "^6.23.0",
"bootstrap": "^5.2.3",
"electron-updater": "^5.3.0",
"font-awesome": "^4.7.0",
"graceful-fs": "^4.2.11",
"less": "^4.1.3",
"node-fetch": "^3.3.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"electron": "^23.1.3",
"electron-builder": "^23.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"wait-on": "5.2.1",
"web-vitals": "^3.3.0"
}
}