forked from elan-ev/studip-live-streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.3 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
{
"name": "LiveStreaming",
"version": "1.0.0",
"description": "StudIP Live Streaming Plugin",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"prod": "webpack --config webpack.prod.js --mode=production --display errors-only",
"dev": "webpack --config webpack.dev.js --mode=development",
"watch": "webpack --config webpack.dev.js --mode=development --watch --info-verbosity none",
"prezip": "npm install && npm run prod",
"zip": "zip -r LiveStreaming.zip controllers assets migrations views lib LICENSE README.md LiveStreaming.php plugin.manifest package-lock.json"
},
"author": "ELAN e.V. ([email protected])",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"file-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.0.3",
"resolve-url-loader": "^3.1.1",
"sass": "^1.27.0",
"sass-loader": "^10.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"video.js": "^7.8.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.2.0"
}
}