-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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": "sphinx",
"version": "0.1.0",
"private": true,
"license": "Apache2.0",
"description": "Platform for hosting secure meetings",
"author": "Group-13, CSN-254, Indian Institute of Technology, Roorkee <ayushman_t@cs.iitr.ac.in>",
"contributors": [
"Ayushman Tripathy <ayushman_t@cs.iitr.ac.in>",
"Neha Kumari <neha_k@cs.iitr.ac.in>",
"Pujita Gavvaji <gavvaji_p@cs.iitr.ac.in>",
"Pragya Dalal <pragya_d@cs.iitr.ac.in>",
"Shashank Aital <shashank_p@cs.iitr.ac.in>",
"Shreyas Dodamani <shreyas_d@cs.iitr.ac.in>"
],
"dependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"axios": "^0.21.1",
"concurrently": "^6.1.0",
"cross-env": "^7.0.3",
"electron-is-dev": "^2.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ps-list": "^7.2.0",
"randomstring": "^1.2.1",
"react": "^17.0.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"simple-peer": "^9.11.0",
"socket.io-client": "^4.1.2",
"wait-on": "^5.3.0",
"web-vitals": "^1.1.2",
"ws": "^7.4.5"
},
"build": {
"appId": "com.sphinx.the-meeting-sphinx",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"target": [
"deb"
],
"icon": "build/sphinx_package.png",
"category": "Office"
}
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"start": "concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\"",
"dist:linux": "electron-builder --linux",
"preelectron-pack": "npm run react-build"
},
"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": {
"electron": "^12.0.9",
"electron-builder": "^22.10.5"
}
}