forked from FlaminSarge/xcloud-keyboard-mouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.82 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
{
"name": "xcloud-keyboard-mouse",
"private": true,
"description": "Browser extension for controlling xCloud using a keyboard and mouse",
"author": "David Idol",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/idolize/xcloud-keyboard-mouse.git"
},
"scripts": {
"build": "npm run build:chrome",
"build:chrome": "webpack --env browser=chrome --config webpack/webpack.prod.js",
"build:edge": "webpack --env browser=edge --config webpack/webpack.prod.js",
"build:safari": "webpack --env browser=safari --config webpack/webpack.prod.js",
"build:dev": "npm run build:dev:chrome",
"build:dev:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js",
"build:dev:edge": "webpack --env browser=edge --config webpack/webpack.dev.js",
"build:dev:safari": "webpack --env browser=safari --config webpack/webpack.dev.js",
"watch": "npm run watch:chrome",
"watch:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js --watch",
"watch:edge": "webpack --env browser=edge --config webpack/webpack.dev.js --watch",
"watch:safari": "webpack --env browser=safari --config webpack/webpack.dev.js --watch",
"zip": "cd dist && zip -r extension.zip . -x \".*\" -x \"__MACOSX\"",
"clean": "rimraf dist",
"test": "npx jest",
"lint": "eslint --ext .js,.ts,.tsx --quiet --fix .",
"lint:ci": "eslint --ext .js,.ts,.tsx --quiet .",
"prepare": "husky install"
},
"dependencies": {
"@fluentui/react": "^8.77.0",
"@reduxjs/toolkit": "^1.8.2",
"classnames": "^2.3.1",
"deep-equal": "^2.0.5",
"extpay": "^3.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"react-responsive-modal": "^6.2.0",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@types/chrome": "0.0.190",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^28.1.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2 ",
"schema-utils": "^4.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}