-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hdt-twitch-extension",
"version": "1.3.0",
"description": "The official Twitch Extension for Hearthstone Deck Tracker.",
"homepage": "https://github.com/HearthSim/hdt-twitch-extension",
"bugs": {
"url": "https://github.com/HearthSim/hdt-twitch-extension/issues"
},
"license": "UNLICENSED",
"author": "Benedict Etzel <benedict@hearthsim.net>",
"repository": {
"type": "git",
"url": "https://github.com/HearthSim/hdt-twitch-extension.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "webpack --mode production",
"dev": "webpack-dev-server -d --hot",
"format": "yarn format:eslint; yarn format:prettier",
"format:prettier": "prettier --write \"{src/**/*.ts{,x},*.js}\"",
"format:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
"lint": "yarn lint:eslint; yarn lint:prettier",
"lint:prettier": "prettier --list-different \"{src/**/*.ts{,x},*.js}\"",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@types/lodash": "^4.14.106",
"@types/lodash.isequal": "^4.5.2",
"@types/prop-types": "^15.5.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-hot-loader": "^4.1.0",
"@types/react-redux": "^5.0.15",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.0.1",
"@types/twitch-ext": "^1.24.1",
"@types/webpack-env": "^1.13.5",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^0.1.19",
"clipboard-polyfill": "^2.8.6",
"deckstrings": "^3.1.1",
"file-loader": "^2.0.0",
"hearthstonejson-client": "^1.4.0",
"html-webpack-include-sibling-chunks-plugin": "0.1.0",
"html-webpack-plugin": "^3.1.0",
"js-cookie": "^2.2.1",
"license-webpack-plugin": "^1.3.1",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-hs-components": "https://libs.hearthsim.net/react-hs-components-v0.6.1.tgz",
"react-redux": "^7",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.0",
"typescript": "^3.8.3",
"webpack": "^4",
"webpack-cli": "^3.1.0",
"webpack-sources": "^1.1.0",
"zip-webpack-plugin": "^3.0.0"
},
"devDependencies": {
"@hearthsim/eslint-config-typescript-react": "^1.0.0",
"@types/js-cookie": "^2.2.6",
"@typescript-eslint/eslint-plugin": "5.4.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.2.4",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"prettier": "^2.4.1",
"webpack-dev-server": "^3.8.0"
},
"resolutions": {
"terser-webpack-plugin": "4.2.3"
},
"private": true
}