forked from FrankerFaceZ/Add-Ons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "ffz-addons",
"version": "1.0.0",
"description": "Addons for FrankerFaceZ",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.web.dev.js",
"start:prod": "webpack-dev-server --config webpack.web.dev.prod.js",
"build": "webpack && node bin/addon_hash",
"clean": "rimraf dev",
"eslint": "eslint \"src/**/*.{js,jsx,vue}\"",
"update-times": "node bin/update_times",
"prepare": "husky install"
},
"devDependencies": {
"@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",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^2.1.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-vue": "^6.2.2",
"extract-loader": "^3.2.0",
"file-loader": "^3.0.1",
"husky": "^5.2.0",
"jsonfile": "^6.1.0",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"sass-loader": "^7.3.1",
"staged-git-files": "^1.2.0",
"string-replace-webpack-plugin": "^0.1.3",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-cli": "4",
"webpack-dev-server": "4",
"webpack-manifest-plugin": "4",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"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"
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}