This repository has been archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
{
"name": "mixrelixr",
"version": "2.10.2",
"description": "A browser extension that enhances the Mixer.com experience by providing options, tweaks, and new features.",
"author": "Team Crowbar",
"license": "GNU v3.0",
"scripts": {
"lint": "eslint --ext .js,.vue --fix src scripts",
"lint:local:fix": "eslint --ext .js,.vue --fix --output-file=eslint.output.html --format=html src scripts",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:firefox": "cross-env NODE_ENV=production BROWSER=firefox webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build:dev:firefox": "cross-env NODE_ENV=development BROWSER=firefox webpack --hide-modules",
"build-zip": "npm run build && node scripts/build-zip.js",
"build-zip:firefox": "npm run build:firefox && cross-env BROWSER=firefox node scripts/build-zip.js && node scripts/build-firefox-source-zip.js",
"build-zips": "npm run build-zip && npm run build-zip:firefox",
"firefox-review": "npm install && npm run build:firefox",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"dependencies": {
"@mixer/chat-client-websocket": "^1.1.0",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.27",
"bowser": "^2.5.3",
"carina": "^0.11.2",
"jquery": "^3.4.1",
"jquery-modal": "^0.9.2",
"jquery-toast-plugin": "^1.3.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"reconnecting-websocket": "^4.2.0",
"simulant": "^0.2.2",
"tooltipster": "^4.2.6",
"vue": "^2.6.10",
"vue-multiselect": "^2.1.6",
"vue-resource": "^1.5.1",
"vue-slider-component": "^3.0.34",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime-corejs3": "^7.4.0",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^4.5.3",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^1.1.11",
"husky": "^2.4.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-extension-reloader": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}