-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.59 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
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
118
119
120
121
{
"name": "optishot-remote-controller",
"version": "0.0.1",
"description": "Remote Control for the Optishot 2 Golf Simulator",
"main": "./dist/main.bundle.js",
"scripts": {
"start": "electron ./dist/main.bundle.js",
"dev": "rimraf dist && cross-env NODE_ENV=development webpack --watch --progress --color",
"prod": "rimraf dist && cross-env NODE_ENV=production webpack --progress --color",
"test": "mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.ts\"",
"build:win": "electron-builder build --win --x64 --ia32",
"build:mac": "electron-builder build --mac --x64",
"postinstall": "electron-rebuild -f -w robotjs",
"rebuild": "electron-rebuild -f -w robotjs",
"stats": "webpack --json > build/stats.json"
},
"build": {
"appId": "optishot_remote_controller",
"productName": "Optishot Remote Controller",
"directories": {
"app": "./dist/",
"output": "./out/"
},
"mac": {
"target": [
"dmg"
],
"entitlements": "./build/entitlements.mac.inherit.plist",
"hardenedRuntime": true
},
"win": {
"target": "nsis",
"asar": true,
"publisherName": "Optishot Remote Controller",
"requestedExecutionLevel": "highestAvailable"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"afterSign": "./build/afterSign.js",
"buildVersion": "1"
},
"author": "Kyle Hoskins",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"detect-port": "^1.3.0",
"electron-store": "^6.0.1",
"express": "^4.17.1",
"node-ip": "^0.1.2",
"qrious": "^4.0.2",
"react": "^17.0.1",
"react-div-100vh": "^0.5.6",
"react-dom": "^17.0.1",
"react-hot-toast": "^1.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"reactjs-popup": "^2.0.4",
"robotjs": "^0.6.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/mocha": "^8.2.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.0.0",
"electron-rebuild": "^2.3.4",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"lodash": "^4.17.20",
"mocha": "^8.2.1",
"node-loader": "^1.0.2",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.0",
"spectron": "^13.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyle-apex/optishot-remote-controller"
},
"keywords": [
"optishot",
"optishot2",
"optishot 2",
"golf",
"simulator",
"remote",
"control",
"controller"
],
"bugs": {
"url": "https://github.com/kyle-apex/optishot-remote-controller/issues"
},
"homepage": "https://github.com/kyle-apex/optishot-remote-controller#readme"
}