-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "BetterTTV",
"author": "Night",
"version": "7.7.15",
"description": "BetterTTV enhances Twitch with new features, emotes, and more.",
"main": "betterttv.js",
"type": "module",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode development",
"build:prod": "webpack --mode production",
"lint": "eslint . && prettier --check .",
"extract-i18n": "formatjs extract 'src/**/*.{js,jsx}' --out-file build/i18n/messages/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]' --preserve-whitespace && formatjs compile build/i18n/messages/en.json --out-file build/i18n/messages/en.json"
},
"repository": {
"type": "git",
"url": "https://github.com/night/BetterTTV.git"
},
"dependencies": {
"@babel/core": "7.29.7",
"@babel/eslint-parser": "7.29.7",
"@babel/plugin-transform-runtime": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/runtime": "7.29.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/react": "^0.27.19",
"@formatjs/cli": "6.16.10",
"@formatjs/intl": "4.1.13",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-brands-svg-icons": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@mantine/core": "^9.3.0",
"@mantine/hooks": "^9.3.0",
"@mantine/modals": "^9.3.0",
"@sentry/browser": "10.56.0",
"@sentry/webpack-plugin": "5.3.0",
"autoprefixer": "10.5.0",
"babel-loader": "10.1.1",
"babel-plugin-formatjs": "11.3.12",
"babel-plugin-wildcard": "7.0.0",
"classnames": "2.5.1",
"clean-webpack-plugin": "4.0.0",
"cookies-js": "1.2.3",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "8.0.0",
"delegated-events": "1.1.2",
"emoji-toolkit": "10.0.0",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-plugin": "7.4.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"file-saver": "2.0.5",
"filemanager-webpack-plugin": "10.0.1",
"framer-motion": "12.40.0",
"fuse.js": "7.4.2",
"git-rev-sync": "3.0.2",
"glob": "13.0.6",
"got": "15.0.5",
"graphql-tag": "2.12.6",
"json-loader": "0.5.7",
"lodash.chunk": "4.2.0",
"lodash.debounce": "4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.sortby": "4.7.0",
"lodash.throttle": "4.1.1",
"lodash.uniqby": "4.7.0",
"luxon": "3.7.2",
"mini-css-extract-plugin": "2.10.2",
"normalize-path": "3.0.0",
"pkce-challenge": "^6.0.0",
"postcss": "8.5.15",
"postcss-hexrgba": "2.1.0",
"postcss-loader": "8.2.1",
"postcss-url": "10.1.4",
"prettier": "3.8.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-string-replace": "2.0.1",
"reconnecting-eventsource": "1.6.5",
"remove-files-webpack-plugin": "1.5.0",
"safe-regex2": "5.1.1",
"semver": "7.8.2",
"terser-webpack-plugin": "5.6.1",
"twemoji": "14.0.2",
"virtual-module-webpack-plugin": "0.4.1",
"webpack": "5.107.2",
"webpack-cli": "7.0.3",
"webpack-dev-server": "5.2.4",
"webpack-virtual-modules": "0.6.2",
"zustand": "^5.0.14"
},
"browserslist": [
"last 1 version",
"> 0.25%, not dead"
],
"devDependencies": {
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.2",
"globals": "17.6.0",
"postcss-prefixwrap": "^1.58.0"
},
"overrides": {
"postcss-url": {
"minimatch": "^3.1.5"
},
"brace-expansion@>=5.0.0 <5.0.6": "^5.0.6",
"uuid@<11.1.1": "^11.1.1"
}
}