-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "amazon-ivs-player-web-sample",
"version": "1.0.0",
"repository": "https://github.com/aws-samples/amazon-ivs-player-web-sample",
"description": "Code samples for the Amazon IVS Player Web SDK",
"main": "",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"lint": "tsc --noEmit --project ./tsconfig.json",
"bundle": "npm-run-all lint build",
"watch:tsc": "tsc-watch --project ./tsconfig.json --noEmit",
"watch:webpack": "webpack-dev-server --config ./webpack.config.js --compress",
"start": "npm-run-all --parallel watch:*"
},
"author": {
"name": "Amazon Web Services",
"email": "",
"url": "https://aws.amazon.com/"
},
"license": "MIT-0",
"dependencies": {
"amazon-ivs-player": "^1.34.1",
"video.js": "7.17.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/video.js": "^7.3.8",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^6.1.0",
"file-loader": "^6.0.0",
"npm-run-all": "^4.1.5",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3",
"webpack": "^5.95.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.15.1"
}
}