-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "QuickscanCentral",
"version": "1.0.1",
"productName": "Quickscan Central",
"description":
"An Electron wrapper application for interacting with Opticon's OPN-2001 devices.",
"main": "main.js",
"scripts": {
"start": "electron .",
"install": "electron-rebuild",
"prod":
"webpack --config webpack.build.config.js && electron --noDevServer .",
"dev":
"webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "webpack --config webpack.build.config.js",
"package": "webpack --config webpack.build.config.js",
"postpackage":
"electron-packager ./ QuickscanCentral --out=./builds --asar --app-version=1.0.0 --icon=src/static/icons/win/icon.ico --prune=true",
"complete": "node installer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/C-Rodg/Quickscan-Central.git"
},
"nodejs": "8.7.0",
"keywords": ["Electron", "Opticon", "OPN-2001", "scan"],
"author": "C-Rodg",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.7",
"electron": "^1.4.1",
"electron-packager": "^9.1.0",
"electron-rebuild": "^1.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"moment": "^2.19.1",
"react": "^16.0.0",
"react-alert": "^2.4.0",
"react-dom": "^16.0.0",
"react-portal": "^4.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"axios": "^0.17.0",
"electron-squirrel-startup": "^1.0.0",
"electron-winstaller": "^2.6.3",
"serialport": "^4.0.7"
}
}