-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "fast-connect",
"version": "1.0.0",
"description": "Standalone React WebRTC Application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huseyn0w/fast-connect.git"
},
"keywords": [
"react",
"javascript",
"js",
"express",
"webrtc",
"peerjs"
],
"author": "Elman Hüseynov",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/huseyn0w/fast-connect/issues"
},
"homepage": "https://github.com/huseyn0w/fast-connect#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"peer": "^0.5.3",
"socket.io": "^2.4.1"
},
"engines": {
"node": "14.x"
}
}