-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "react-modular-video",
"version": "0.0.29",
"description": "An extendable, modular, HTML5 video player built in TypeScript and React.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Steven Gresh",
"license": "MIT",
"scripts": {
"start": "WEBPACK_BUILD=development webpack-dev-server",
"build:docs": "WEBPACK_BUILD=development webpack",
"build": "tsc && WEBPACK_BUILD=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stvngrsh/react-modular-video.git"
},
"bugs": {
"url": "https://github.com/stvngrsh/react-modular-video/issues"
},
"homepage": "https://stevengresh.com/react-modular-video",
"files": [
"LICENSE",
"README.md",
"dist",
"src"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"styled-components": "^3.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"react-icons": "3.2.2"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@types/classnames": "^2.2.7",
"@types/node": "10.12.18",
"@types/react": "16.7.18",
"@types/react-bootstrap": "0.32.15",
"@types/react-dom": "16.0.11",
"babel-cli": "6.26.0",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "1.0.0",
"css-loader": "2.0.2",
"dts-bundle": "^0.7.3",
"file-loader": "3.0.1",
"hls.js": "0.12.2",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"react-bootstrap": "0.32.4",
"style-loader": "0.23.1",
"typescript": "3.2.2",
"webpack": "4.28.2",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.13"
}
}