-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "video-player",
"version": "0.4.1",
"private": true,
"description": "",
"main": "built/server.js",
"author": "NorybiaK",
"license": "MIT",
"keywords": [
"mixed reality",
"virtual reality",
"vr",
"altspacevr",
"node"
],
"engines": {
"node": ">=10.16.0",
"npm": ">=6.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "tsc --build --clean",
"build": "tsc --build",
"lint": "tslint -p ./tsconfig.json src/**/*.ts",
"start": "node -r dotenv/config .",
"debug": "node -r dotenv/config --nolazy --inspect-brk=9229 ."
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"typescript": "^3.9.3"
},
"dependencies": {
"@microsoft/mixed-reality-extension-sdk": "^0.20.0",
"@types/node": "^14.0.13",
"@types/pg": "^7.14.10",
"@types/pg-format": "^1.0.1",
"dotenv": "^8.2.0",
"get-video-duration": "^3.0.1",
"node-fetch": "^2.6.0",
"pg": "^8.5.1",
"pg-format": "^1.0.4",
"twitch-get-stream": "^0.6.0",
"url": "^0.11.0"
}
}