-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 956 Bytes
/
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
{
"name": "simple-remote-pair",
"version": "0.2.3",
"description": "Simple remote pairing web app",
"main": "server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "npm run build && node src/server.js",
"build": "browserify src/client.js | terser > public/bundle.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jean-m-ribeiro/simple-pair.git"
},
"author": "Jean Ribeiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/jean-m-ribeiro/simple-pair/issues"
},
"homepage": "https://github.com/jean-m-ribeiro/simple-pair#readme",
"devDependencies": {
"nodemon": "^2.0.3"
},
"dependencies": {
"browserify": "^16.5.1",
"cors": "^2.8.5",
"ejs": "^3.1.2",
"express": "^4.17.1",
"robotjs": "^0.6.0",
"simple-peer": "^9.7.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"terser": "^4.6.12",
"wrtc": "^0.4.4"
}
}