This repository has been archived by the owner on Jul 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.23 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "toby",
"version": "1.0.10",
"description": "A simple YouTube player",
"title": "Toby - A simple YouTube player",
"homepage": "https://github.com/frankhale/toby",
"repository": {
"type": "git",
"url": "https://github.com/frankhale/toby.git"
},
"private": true,
"author": "Frank Hale <frankhale@gmail.com>",
"license": "GPL-3.0",
"main": "./build/index.html",
"node-remote": "http://localhost:62374",
"user-agent": "node-webkit-%nwver",
"window": {
"icon": "./public/images/toby.png",
"toolbar": false,
"width": 640,
"height": 369,
"min_width": 640,
"min_height": 369,
"show": false
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/jquery": "^3.3.31",
"@types/keymaster": "^1.6.28",
"@types/lodash": "^4.14.148",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.8",
"@types/nw.js": "^0.13.8",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/request": "^2.48.3",
"@types/serve-favicon": "^2.2.31",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/sqlite3": "^3.1.5",
"@types/youtube": "^0.0.38",
"grunt": "^1.0.4",
"grunt-contrib-copy": "^1.0.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"hbs": "^4.0.6",
"jquery": "^3.5.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node": "^12.13.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"request": "^2.88.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"split": "^1.0.1",
"sqlite3": "^4.1.0",
"title-case": "^2.1.1",
"youtube-search": "^1.1.4"
},
"webview": {
"partitions": [
{
"name": "trusted",
"accessible_resources": [
"<all_urls>"
]
}
]
}
}