-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "webvtt-player",
"version": "0.0.16",
"description": "View WebVTT as a transcript",
"author": "Ed Summers <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edsu/webvtt-player.git"
},
"main": "dist/webvtt-player.js",
"files": [
"dist/"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"build-public": "webpack --config webpack.public.js --mode production",
"publish": "npm run build-public && node utils/github-publish"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"style-loader": "^0.23.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dashboard": "^3.0.7",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0"
}
}