-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.45 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
{
"name": "mqtt-alarm-panel-ui",
"version": "1.0.0",
"description": "GUI for MQTT Alarm panel using Electron",
"private": false,
"repository": "https://github.com/pureartisan/mqtt-alarm-panel-ui",
"author": {
"name": "Prageeth Silva",
"email": "prageethsilva@gmail.com",
"url": "https://github.com/pureartisan"
},
"keywords": [
"Electron",
"PiCroft",
"GUI"
],
"main": "./build/main.js",
"scripts": {
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack.electron.config.js --mode development && electron .",
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack.react.config.js --mode development",
"build:electron": "cross-env NODE_ENV=production webpack --config webpack.electron.config.js --mode production",
"build:react": "cross-env NODE_ENV=production webpack --config webpack.react.config.js --mode production",
"build": "npm run build:electron && npm run build:react",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:pi": "npm run build && electron-builder --armv7l --linux deb",
"dist:pi:64": "cross-env USE_SYSTEM_FPM=true npm run build && electron-builder --arm64 --linux deb",
"pack:pi": "npm run build && electron-builder --dir --armv7l --linux deb",
"pack:pi:64": "cross-env USE_SYSTEM_FPM=true npm run build && electron-builder --dir --arm64 --linux deb",
"lint": "tslint 'src/**/*.{ts,tsx,js}'",
"lint:fix": "npm run lint -- --fix"
},
"license": "MIT",
"build": {
"files": [
"build/**/*",
"node_modules/",
"package.json"
],
"productName": "MQTT Alarm Panel",
"appId": "mqtt-alarm-panel.gui",
"directories": {
"output": "dist"
}
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.12.7",
"autoprefixer": "^10.0.4",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"electron": "^12.0.2",
"electron-builder": "^22.7.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^5.0.0",
"postcss-loader": "^4.1.0",
"prettier": "^2.2.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@types/classnames": "^2.2.11",
"@types/lodash": "^4.14.165",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.11",
"@types/redux": "^3.6.0",
"classnames": "^2.2.6",
"core-js": "^3.8.0",
"detect-rpi": "^1.4.0",
"electron-log": "^4.3.1",
"electron-store": "^6.0.1",
"lodash": "^4.17.20",
"mqtt": "^4.2.6",
"onoff": "^6.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.2",
"react-spring": "^8.0.27",
"redux": "^4.0.5",
"uifx": "^2.0.7"
}
}