-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "viewing-party",
"version": "1.0.0",
"description": "A viewing party you can setup with your friends!",
"main": "src/server/server.js",
"type": "module",
"dependencies": {
"concurrently": "^6.0.2",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"normalize-url": "^6.0.1",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1",
"socket.io-stream": "^0.9.1",
"watchify": "^4.0.0",
"ws": "^7.4.6",
"ytdl-core": "^4.8.3"
},
"devDependencies": {},
"scripts": {
"start": "node src/server/server.js",
"dev": "npm run concurrently",
"concurrently": "concurrently --kill-others \"npm run nodemon\" \"npm run watchify\"",
"nodemon": "nodemon src/server/server.js",
"watchify": "watchify src/client/client.js -o public/client.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sublimeful/ViewingParty.git"
},
"keywords": [
"viewing",
"party"
],
"author": "Sublimeful",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Sublimeful/ViewingParty/issues"
},
"homepage": "https://github.com/Sublimeful/ViewingParty#readme"
}