-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "resync",
"description": "Watch YouTube videos with your friends.",
"private": true,
"keywords": [
"youtube",
"watch",
"together",
"sync"
],
"version": "0.0.2",
"main": "lib/index.js",
"license": "MIT",
"author": "vaaski <admin@vaa.ski>",
"scripts": {
"start": "node -r dotenv/config lib",
"back:build": "rimraf lib && tsc -p tsconfig.backend.json",
"back:dev": "nodemon",
"front:dev": "vite --port 8080",
"front:build": "vite build",
"front:serve": "vite preview",
"commit": "cz -S",
"format": "prettier -w **/*.{vue,ts}",
"lint": "eslint --fix **/*.{vue,ts}",
"types": "vue-tsc --noEmit",
"quality": "npm run format & npm run lint & npm run types"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@distube/ytdl-core": "^4.16.0",
"@resync-tv/yt-dl": "^0.1.6",
"@sentry/browser": "^6.7.2",
"@sentry/node": "^6.7.2",
"@sentry/tracing": "^6.7.2",
"debug": "^4.3.1",
"nanoid": "^3.1.32",
"nanoid-dictionary": "^4.3.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"ts-debounce": "^3.0.0",
"vue": "^3.2.31",
"vue-router": "^4.0.14",
"ytsr": "^3.5.0"
},
"devDependencies": {
"@types/debug": "^4.1.6",
"@types/nanoid-dictionary": "^4.2.0",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.1.4",
"@vuedx/typescript-plugin-vue": "^0.7.4",
"dotenv": "^10.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^8.5.0",
"got": "^11.8.2",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"supports-color": "^9.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.7.4",
"vite": "^2.7.2",
"vite-plugin-pwa": "^0.8.1",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-windicss": "^1.1.1",
"vue-eslint-parser": "^8.3.0",
"vue-tsc": "^0.33.5"
}
}