-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.86 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
{
"name": "hyper-theater",
"version": "0.1.0",
"private": true,
"main": "app/electron.js",
"description": "HyperTheater leverages the hypercore protocol to let users like yourself maybe, to create their own \"movie house\" session and let their friends join and have fun.",
"repository": "[email protected]:connor-davis/hyper-theater.git",
"author": "Connor Davis <[email protected]>",
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bootstrap": "^4.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"electron-updater": "^4.3.8",
"events": "^3.3.0",
"hypercore": "^9.9.1",
"hyperdrive": "^10.20.0",
"hyperswarm": "^2.15.3",
"moment": "^2.29.1",
"node-sass": "^5.0.0",
"react": "^17.0.2",
"react-animations": "^1.0.0",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-redux": "^7.2.3",
"react-scripts": "4.0.3",
"reactstrap": "^8.9.0",
"redux-axios-middleware": "^4.0.1",
"redux-persist": "^6.0.0",
"sodium-universal": "^3.0.4",
"streamx": "^2.10.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"concurrently": "^5.0.2",
"copyfiles": "^2.2.0",
"cross-env": "^7.0.0",
"electron": "^12.0.4",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^2.2.4",
"typescript": "^3.7.5",
"wait-on": "^4.0.0"
},
"scripts": {
"start": "concurrently \"yarn react-start\" \"wait-on http://localhost:3000/ && cross-env NODE_ENV=development yarn electron-start\"",
"react-start": "react-scripts start",
"electron-start": "electron ."
},
"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"
]
},
"copyFiles": [
{
"from": "app/**",
"to": "build/"
}
],
"build": {
"appId": "tech.connordavis.hypertheater",
"compression": "maximum",
"productName": "HyperTheater",
"target": "NSIS",
"win": {
"icon": "public/favicon.ico"
},
"files": [
"build/**/*",
"node_modules/electron-updater"
],
"asar": false,
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
}
}