2015-01-12 17:58:07 -05:00
|
|
|
{
|
2017-11-13 01:23:39 -05:00
|
|
|
"name": "frankerfacez",
|
|
|
|
"author": "Dan Salvato LLC",
|
2023-03-27 19:49:24 -04:00
|
|
|
"version": "4.44.1",
|
2017-11-13 01:23:39 -05:00
|
|
|
"description": "FrankerFaceZ is a Twitch enhancement suite.",
|
2021-03-13 16:35:59 -05:00
|
|
|
"private": true,
|
2018-04-03 13:10:19 -04:00
|
|
|
"license": "Apache-2.0",
|
2017-11-13 01:23:39 -05:00
|
|
|
"scripts": {
|
2022-09-01 15:36:47 -04:00
|
|
|
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config webpack.web.dev.js",
|
2018-04-01 18:24:08 -04:00
|
|
|
"eslint": "eslint \"src/**/*.{js,jsx,vue}\"",
|
2019-06-19 20:57:14 -04:00
|
|
|
"clean": "rimraf dist",
|
2022-09-01 15:36:47 -04:00
|
|
|
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config webpack.web.dev.js",
|
|
|
|
"dev:prod": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config webpack.web.dev.prod.js",
|
2021-11-06 20:12:55 -04:00
|
|
|
"build": "pnpm build:prod",
|
2022-10-07 15:12:15 -04:00
|
|
|
"build:stats": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.web.prod.js --json > stats.json",
|
|
|
|
"build:prod": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.web.prod.js",
|
|
|
|
"build:dev": "pnpm clean && cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.web.dev.js",
|
2021-11-06 20:12:55 -04:00
|
|
|
"font": "pnpm font:edit",
|
2019-09-29 15:49:29 -04:00
|
|
|
"font:edit": "fontello-cli --cli-config fontello.client.json edit",
|
2021-11-06 20:12:55 -04:00
|
|
|
"font:save": "fontello-cli --cli-config fontello.client.json save && pnpm font:update",
|
2019-09-29 15:49:29 -04:00
|
|
|
"font:update": "node bin/update_fonts"
|
2017-11-13 01:23:39 -05:00
|
|
|
},
|
2015-01-12 17:58:07 -05:00
|
|
|
"devDependencies": {
|
2021-11-06 20:12:55 -04:00
|
|
|
"@babel/core": "^7.16.0",
|
|
|
|
"@babel/eslint-parser": "^7.16.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
|
2020-07-10 20:08:29 -04:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2021-11-06 20:12:55 -04:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.16.0",
|
2021-02-09 19:14:56 -05:00
|
|
|
"@ffz/fontello-cli": "^1.0.4",
|
2021-11-06 20:12:55 -04:00
|
|
|
"@webpack-cli/serve": "^1.6.0",
|
|
|
|
"babel-loader": "^8.2.3",
|
2019-06-19 20:57:14 -04:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2021-06-18 14:27:14 -04:00
|
|
|
"copy-webpack-plugin": "^5.1.2",
|
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"css-loader": "^3.6.0",
|
2021-11-06 20:12:55 -04:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-plugin-react": "^7.26.1",
|
2020-07-10 20:08:29 -04:00
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
2019-06-19 20:57:14 -04:00
|
|
|
"extract-loader": "^2.0.1",
|
2021-06-18 14:27:14 -04:00
|
|
|
"file-loader": "^4.3.0",
|
2019-06-19 20:57:14 -04:00
|
|
|
"json-loader": "^0.5.7",
|
2019-07-29 15:48:00 -04:00
|
|
|
"raw-loader": "^3.1.0",
|
2020-07-10 20:08:29 -04:00
|
|
|
"rimraf": "^3.0.2",
|
2021-12-01 16:48:10 -05:00
|
|
|
"sass": "^1.43.4",
|
2021-11-06 20:12:55 -04:00
|
|
|
"sass-loader": "^7.3.1",
|
2021-06-18 14:27:14 -04:00
|
|
|
"semver": "^7.3.5",
|
2021-11-06 20:12:55 -04:00
|
|
|
"terser-webpack-plugin": "4",
|
|
|
|
"vue-loader": "^15.9.8",
|
2021-06-18 14:27:14 -04:00
|
|
|
"vue-template-compiler": "^2.6.14",
|
|
|
|
"webpack": "^4.46.0",
|
2021-11-06 20:12:55 -04:00
|
|
|
"webpack-cli": "^4.9.1",
|
|
|
|
"webpack-dev-server": "^4.4.0",
|
|
|
|
"webpack-manifest-plugin": "^4.0.2",
|
2019-12-31 18:09:09 -05:00
|
|
|
"webpack-merge": "^4.2.2"
|
2015-01-12 17:58:07 -05:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-11-13 01:23:39 -05:00
|
|
|
"url": "https://github.com/FrankerFaceZ/FrankerFaceZ.git"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-06-17 14:27:04 -04:00
|
|
|
"@ffz/icu-msgparser": "^2.0.0",
|
2021-11-10 18:27:52 -05:00
|
|
|
"@popperjs/core": "^2.10.2",
|
2021-06-18 14:27:14 -04:00
|
|
|
"crypto-js": "^3.3.0",
|
2021-11-06 20:12:55 -04:00
|
|
|
"dayjs": "^1.10.7",
|
2020-07-10 20:08:29 -04:00
|
|
|
"displacejs": "^1.4.1",
|
2021-06-18 14:27:14 -04:00
|
|
|
"emoji-regex": "^9.2.2",
|
|
|
|
"file-saver": "^2.0.5",
|
2021-11-06 20:12:55 -04:00
|
|
|
"graphql": "^16.0.1",
|
|
|
|
"graphql-tag": "^2.12.6",
|
2021-12-01 16:48:10 -05:00
|
|
|
"jszip": "^3.7.1",
|
2019-12-31 18:09:09 -05:00
|
|
|
"js-cookie": "^2.2.1",
|
2021-11-06 20:12:55 -04:00
|
|
|
"markdown-it": "^12.2.0",
|
2020-07-10 20:08:29 -04:00
|
|
|
"markdown-it-link-attributes": "^3.0.0",
|
2021-11-06 20:12:55 -04:00
|
|
|
"mnemonist": "^0.38.5",
|
2021-06-18 14:27:14 -04:00
|
|
|
"path-to-regexp": "^3.2.0",
|
2021-11-06 20:12:55 -04:00
|
|
|
"raven-js": "^3.27.2",
|
|
|
|
"react": "^17.0.2",
|
2020-07-10 20:08:29 -04:00
|
|
|
"safe-regex": "^2.1.1",
|
2021-11-06 20:12:55 -04:00
|
|
|
"sortablejs": "^1.14.0",
|
2019-10-04 14:57:13 -04:00
|
|
|
"sourcemapped-stacktrace": "^1.1.11",
|
2019-10-06 20:01:22 -04:00
|
|
|
"text-diff": "^1.0.1",
|
2021-11-06 20:12:55 -04:00
|
|
|
"vue": "^2.6.14",
|
2018-04-29 01:28:19 -04:00
|
|
|
"vue-clickaway": "^2.2.2",
|
2021-06-18 14:27:14 -04:00
|
|
|
"vue-color": "^2.8.1",
|
2021-11-06 20:12:55 -04:00
|
|
|
"vue-observe-visibility": "^1.0.0",
|
2021-06-18 14:27:14 -04:00
|
|
|
"vuedraggable": "^2.24.3"
|
2021-11-06 20:12:55 -04:00
|
|
|
},
|
|
|
|
"pnpm": {
|
|
|
|
"overrides": {
|
|
|
|
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
|
|
|
|
"set-value@<4.0.1": ">=4.0.1",
|
|
|
|
"glob-parent@<5.1.2": ">=5.1.2"
|
|
|
|
}
|
2015-01-12 17:58:07 -05:00
|
|
|
}
|
|
|
|
}
|