This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.93 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
{
"name": "streamdeck-editor",
"version": "1.0.0",
"description": "StreamDeck Editor",
"homepage": "./",
"main": "main.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack serve --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./builds",
"rebuild": "electron-rebuild -f && electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/headdetect/streamdeck-editor"
},
"author": "headdetect",
"license": "MIT",
"build": {
"appId": "com.headdetect.streamdeck-editor",
"win": {
"iconUrl": "https://cdn2.iconfinder.com/data/icons/designer-skills/128/react-256.png"
},
"directories": {
"buildResources": "public"
}
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.14",
"@julusian/jpeg-turbo": "^1.0.0",
"babel-loader": "^8.2.2",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.6.0",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.1.1",
"electron-rebuild": "^2.3.4",
"elgato-stream-deck": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-react": "^7.22.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"foreman": "^3.0.1",
"gif-frames": "^1.0.1",
"gifsicle": "^5.1.0",
"hsluv": "^0.1.0",
"html-webpack-plugin": "^4.5.0",
"jimp": "^0.16.1",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.3",
"node-gyp": "^7.1.2",
"node-hid": "^2.1.1",
"omggif": "^1.0.10",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-redux": "^7.2.3",
"react-scripts": "^4.0.1",
"redux": "^4.0.5",
"robotjs": "^0.6.0",
"sass": "^1.32.8",
"sass-loader": "^10.1.0",
"sharp": "^0.27.0",
"style-loader": "^2.0.0",
"sudo-prompt": "^9.2.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1"
}
}