-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.64 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": "DisStreamChat",
"version": "v1.4.2",
"description": "Cross platform stream chat manager",
"author": "David Snyder",
"license": "MIT",
"build": {
"appId": "com.disstreamchat.id",
"win": {
"icon": "build/icon.ico",
"publish": [
"github"
]
}
},
"main": "public/electron.js",
"homepage": "./",
"private": false,
"dependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@webscopeio/react-textarea-autocomplete": "^4.7.2",
"bootstrap": "^4.4.1",
"chatbits": "^1.2.11",
"chroma-js": "^2.1.0",
"cross-env": "^6.0.3",
"custom-electron-titlebar": "^3.2.2-hotfix62",
"dompurify": "^2.0.10",
"electron-builder-squirrel-windows": "^22.8.1",
"electron-context-menu": "^2.1.0",
"electron-is-dev": "^1.1.0",
"electron-log": "^4.2.1",
"electron-packager": "^15.0.0",
"electron-updater": "^4.0.0",
"electron-window-state": "^5.0.3",
"eslint": "^6.6.0",
"firebase": "^7.14.2",
"lodash": "^4.17.19",
"node-notifier": "^8.0.0",
"node-sass": "^4.14.1",
"react": "^16.11.0",
"react-animate-height": "^2.0.21",
"react-color": "^2.18.1",
"react-dom": "^16.11.0",
"react-firebase-hooks": "^2.2.0",
"react-icons": "^3.10.0",
"react-loader": "^2.4.7",
"react-modal": "^3.11.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-use": "^15.3.0",
"semver-compare": "^1.0.0",
"sha1": "^1.1.1",
"socket.io-client": "^4.0.1",
"uid": "^1.0.0",
"use-async-memo": "^1.2.2",
"use-hotkeys": "^1.1.0"
},
"scripts": {
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"test-react": "react-scripts test --env=jsdom",
"eject-react": "react-scripts eject",
"build-electron": "electron-builder",
"start-electron": "electron .",
"release-electron": "electron-builder --win -p always",
"release": "yarn build-react && yarn release-electron",
"build": "yarn build-react && yarn build-electron",
"start": "concurrently \"cross-env BROWSER=none yarn start-react\" \"wait-on http://localhost:3005 && 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"
]
},
"devDependencies": {
"concurrently": "^5.2.0",
"electron": "^9.2.0",
"electron-builder": "^22.8.1",
"eslint-plugin-react": "^7.20.0",
"wait-on": "^3.3.0"
}
}