-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.05 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.05 KB
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
88
89
90
{
"name": "streamwave",
"version": "1.0.0-0",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config build/webpack.config.js",
"build:analyse": "rm -rf ./dist && NODE_ENV=production webpack --profile --json > stats.json --config build/webpack.config.js -p && webpack-bundle-analyzer stats.json",
"build": "rm -rf ./dist && NODE_ENV=production webpack --config build/webpack.config.js -p && node build/cache-manifest-builder.js",
"analyse": "webpack-bundle-analyzer stats.json",
"bundlesize": "bundlesize"
},
"bundlesize": [
{
"path": "./dist/*.bundle.*.js",
"maxSize": "200kB"
}
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-imports": "^1.5.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bundlesize": "^0.17.0",
"copy-webpack-plugin": "^4.6.0",
"critters-webpack-plugin": "^1.3.3",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fast-async": "^6.3.8",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"htmltidy": "0.0.6",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"preact-perf-profiler": "^1.0.3",
"preload-webpack-plugin": "^3.0.0-beta.3",
"prerender-loader": "^1.3.0",
"progress-bar-webpack-plugin": "^1.12.1",
"pwmetrics": "^3.3.0",
"resource-hints-webpack-plugin": "0.0.1",
"sass-loader": "^6.0.7",
"script-ext-html-webpack-plugin": "^2.1.3",
"source-map-loader": "^0.2.4",
"style-loader": "^0.20.3",
"svg-url-loader": "^2.3.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"walk": "^2.3.14",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.5",
"webpack-dev-middleware": "^3.6.2",
"webpack-dev-server": "^3.3.1",
"webpack-externals-plugin": "^1.0.0",
"webpackbar": "^2.6.4",
"workbox-webpack-plugin": "^3.6.3"
},
"dependencies": {
"@7rulnik/react-loadable": "^5.3.4",
"css-paint-polyfill": "^1.0.0",
"debounce": "^1.1.0",
"events": "^3.0.0",
"idb-keyval": "^3.0.5",
"jwt-decode": "^2.2.0",
"material-ui": "^1.0.0-beta.47",
"nodent": "^3.2.4",
"preact": "^8.2.9",
"preact-compat": "^3.18.0",
"prop-types": "^15.6.1",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"shaka-player": "^2.4.0"
}
}