-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.23 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
{
"name": "@dream-bit-de/electron-gatsby-boilerplate",
"version": "1.0.0",
"description": "Stop using monolithic config setups, start developing! This Repo will give you a Kick-Start with the help of Gatsby.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "./dist/app-prod.js",
"scripts": {
"build:client": "gatsby clean && cross-env NODE_ENV=production gatsby build",
"build:electron-compile": "cross-env NODE_ENV=production webpack --config ./electron-webpack-prod.js",
"build:electron-package": "cross-env NODE_ENV=production electron-builder",
"build:electron": "npm run build:electron-compile && npm run build:electron-package",
"build": "npm run build:client && npm run build:electron",
"dev:client": "cross-env NODE_ENV=development gatsby develop",
"dev:electron-compile": "webpack --config ./electron-webpack-dev.js",
"dev:electron-run": "cross-env wait-on http://localhost:8000 && npx electron ./dist/app-dev.js",
"develop": "concurrently \"npm run dev:client\" \"npm run dev:electron-compile\" \"npm run dev:electron-run\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"postinstall": "npx electron-builder install-app-deps",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"build": {
"appId": "com.Elgabo.app",
"productName": "Elgabo - Electron + Gatsby + Boilerplate",
"extraMetadata": {
"main": "dist/app-prod.js"
},
"files": [
"public/**/*",
"dist/app-prod.js"
],
"win": {},
"linux": {},
"mac": {}
},
"dependencies": {
"bufferutil": "^4.0.1",
"core-js": "^3.6.5",
"electron-serve": "^1.0.0",
"gatsby": "^2.24.51",
"gatsby-image": "^2.4.16",
"gatsby-plugin-manifest": "^2.4.25",
"gatsby-plugin-offline": "^3.2.25",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.29",
"gatsby-source-filesystem": "^2.3.26",
"gatsby-transformer-sharp": "^2.5.13",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"regenerator-runtime": "^0.13.7",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron": "^10.1.0",
"electron-builder": "^22.8.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "2.1.1",
"wait-on": "^5.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dream-bit-de/electron-gatsby-boilerplate.git"
},
"keywords": [
"electron",
"gatsby",
"kick-start",
"boilerplate",
"easy",
"webpack"
],
"author": "Dream-bit.de, Güney Jung",
"license": "MIT",
"bugs": {
"url": "https://github.com/dream-bit-de/electron-gatsby-boilerplate/issues"
},
"homepage": "https://github.com/dream-bit-de/electron-gatsby-boilerplate#readme"
}