-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "stream-together-web-extension",
"version": "0.0.0",
"description": "Watch any video together with friends.",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"lint": "svelte-check && eslint . --ext .ts",
"prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrsheepsheep/watchparty.git"
},
"author": "",
"bugs": {
"url": "https://github.com/mrsheepsheep/watchparty/issues"
},
"homepage": "https://github.com/mrsheepsheep/watchparty#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^6.5.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"style-loader": "^1.2.1",
"svelte": "^3.25.0",
"svelte-check": "^1.0.41",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^4.2.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webextension-polyfill-ts": "^0.20.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
],
"*.ts": [
"svelte-check",
"eslint --fix"
]
},
"dependencies": {
"debug": "^4.1.1",
"eventemitter3": "^3.1.2",
"peerjs": "^1.3.1"
}
}