This repository was archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "web-window",
"version": "1.0.2-beta",
"description": "Electron-based linux application that makes all your favourite webapps run like native apps.",
"keywords": [
"electron",
"chromium",
"webapp",
"wrapper",
"linux",
"application",
"app",
"webwindow",
"website",
"desktop-app",
"desktop"
],
"author": {
"name": "flomanuel",
"url": "https://github.com/flomanuel"
},
"engines": {
"node": "^14.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/flomanuel/web-window/issues"
},
"main": "./main.js",
"private": true,
"scripts": {
"el_start": "electron ./dist/main.js",
"wp_build": "NODE_ENV=production webpack --progress --config webpack.config.js",
"wp_dev": "NODE_ENV=development webpack --progress --config webpack.config.js",
"wp_watch": "NODE_ENV=development webpack --progress --watch --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git@github.com:flomanuel/web-window.git"
},
"homepage": "https://github.com/flomanuel/web-window#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"electron": "^12.2.3",
"electron-builder": "^22.14.13",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.29.4",
"eslint-webpack-plugin": "^3.1.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"mini-css-extract-plugin": "^2.6.0",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"electron-settings": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"rxjs": "^7.5.5"
}
}