-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.93 KB
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
{
"name": "screen-mirror-app",
"version": "0.0.1",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "webpack --mode=development",
"watch": "webpack -w --mode=development",
"app": "electron .",
"build-webpack": "set NODE_ENV=production && webpack --mode=production",
"build-all": "electron-packager . ScreenMirrorApp --out=build --platform=all --arch=x64 --electron-version=6.0.10 --prune --overwrite --asar --ignore=build --ignore=src --ignore=static",
"build-win": "electron-packager . ScreenMirrorApp --out=build --platform=win32 --arch=x64 --electron-version=6.0.10 --prune --overwrite --asar --ignore=build --ignore=src --ignore=static",
"build-mac": "electron-packager . ScreenMirrorApp --out=build --platform=darwin --arch=x64 --electron-version=6.0.10 --prune --overwrite --asar --ignore=build --ignore=src --ignore=static",
"build-linux": "electron-packager . ScreenMirrorApp --out=build --platform=linux --arch=x64 --electron-version=6.0.10 --prune --overwrite --asar --ignore=build --ignore=src --ignore=static",
"package-all": "npm run build-webpack && npm run build-all",
"package-win": "npm run build-webpack && npm run build-win",
"package-mac": "npm run build-webpack && npm run build-mac",
"package-linux": "npm run build-webpack && npm run build-linux",
"deploy": "node ./ci/deploy.js",
"upload": "node ./ci/upload.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.3.1",
"jquery": "^3.4.1",
"jquery.qrcode": "^1.0.3",
"popper.js": "^1.15.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.0",
"ajax": "0.0.4",
"archiver": "^3.1.1",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"bufferutil": "^4.0.1",
"copy-webpack-plugin": "^5.0.4",
"cors": "^2.8.5",
"css-loader": "^3.2.0",
"electron": "^6.0.10",
"electron-packager": "^14.0.6",
"express": "^4.17.1",
"fs": "0.0.1-security",
"googleapis": "^43.0.0",
"html-webpack-plugin": "^3.2.0",
"log4js": "^6.4.0",
"npm": "^6.11.3",
"postcss-loader": "^3.0.0",
"readline": "^1.3.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.1.2",
"typescript": "^3.6.3",
"utf-8-validate": "^5.0.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"ws": "^7.1.2"
}
}