-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "ffz-addons",
"version": "1.0.0",
"description": "Addons for FrankerFaceZ",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve",
"start:prod": "cross-env NODE_ENV=production webpack serve",
"build": "cross-env NODE_ENV=production webpack build && node bin/addon_hash",
"build:ext": "cross-env NODE_ENV=production FFZ_EXTENSION=true webpack build && node bin/addon_hash",
"build:dev": "cross-env NODE_ENV=development webpack build && node bin/addon_hash",
"clean": "rimraf dist",
"fixlogos": "node bin/fix_remote_logos",
"eslint": "eslint \"src/**/*.{js,jsx,vue}\"",
"update-times": "node bin/update_times",
"prepare": "husky install"
},
"devDependencies": {
"@cyclonedx/webpack-plugin": "^3.14.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"esbuild-loader": "^4.0.2",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-vue": "^9.17.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"glob": "^10.3.10",
"husky": "^8.0.3",
"minify-graphql-loader": "^1.0.2",
"rimraf": "^5.0.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"staged-git-files": "^1.3.0",
"string-replace-loader": "^3.1.0",
"vue-loader": "^15.10.2",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-manifest-plugin": "^5.0.0"
},
"dependencies": {
"@wizulus/code": "^1.0.2",
"displacejs": "^1.4.1",
"graphql": "^16.0.1",
"graphql-tag": "^2.12.6",
"js-levenshtein": "^1.1.6",
"reconnecting-websocket": "^4.4.0",
"sortablejs": "^1.14.0",
"spark-md5": "^3.0.2",
"unescape-js": "^1.1.4"
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"chalk@<4": ">=4 <5",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}