-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.04 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
{
"name": "desktop-control-tablet",
"version": "0.2.0",
"description": "",
"author": "Gannon Prudhomme",
"main": "main.js",
"scripts": {
"build-react": "cross-env NODE_ENV=production webpack --config webpack.renderer.prod.config.js",
"start-main-dev": "electron .",
"start-react-dev": "webpack-dev-server --config webpack.renderer.dev.config.js",
"start-dev": "cross-env START_HOT=1 npm run start-react-dev",
"start": "cross-env NODE_ENV=production electron . --no-sandbox",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gannonprudhomme/Desktop-Control-Tablet.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gannonprudhomme/Desktop-Control-Tablet/issues"
},
"homepage": "https://github.com/gannonprudhomme/Desktop-Control-Tablet#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@types/react-redux": "^7.1.8",
"cross-env": "^7.0.3",
"electron": "^8.2.5",
"lifx-lan-client": "^1.0.5",
"node-lifx": "^0.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"rpi-backlight": "^0.3.0",
"socket.io": "^2.4.1",
"socket.io-client": "^2.3.0",
"tplink-lightbulb": "^1.5.1",
"weather-js": "^2.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@hot-loader/react-dom": "^16.13.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.1.1",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^6.0.0",
"jest": "^26.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-jest": "^25.5.0",
"ts-loader": "^7.0.3",
"typescript": "^3.8.3",
"typescript-eslint": "0.0.1-alpha.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
}
}