-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 KB
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
{
"name": "ephemeral-watch-party",
"version": "1.0.0",
"private": true,
"description": "A complete ephemeral watch party PWA for synchronized YouTube viewing",
"keywords": [
"watch-party",
"pwa",
"youtube",
"real-time",
"chat"
],
"homepage": "https://github.com/PATILYASHH/Party-player#readme",
"bugs": {
"url": "https://github.com/PATILYASHH/Party-player/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PATILYASHH/Party-player.git"
},
"license": "MIT",
"author": "",
"type": "commonjs",
"main": "postcss.config.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:frontend\"",
"dev:server": "cd server && node index.js",
"dev:frontend": "cd frontend && next dev",
"build": "cd frontend && next build",
"start": "concurrently \"npm run start:server\" \"npm run start:frontend\"",
"start:server": "cd server && node index.js",
"start:frontend": "cd frontend && next start",
"install:all": "npm install && cd server && npm install && cd ../frontend && npm install"
},
"dependencies": {
"cliui": "^8.0.1",
"date-fns": "^2.30.0",
"escalade": "^3.2.0",
"get-caller-file": "^2.0.5",
"is-fullwidth-code-point": "^3.0.0",
"lodash": "^4.17.21",
"require-directory": "^2.1.1",
"rxjs": "^7.8.2",
"shell-quote": "^1.8.3",
"spawn-command": "^0.0.2",
"tree-kill": "^1.2.2",
"tslib": "^2.8.1",
"y18n": "^5.0.8",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}