forked from Snjoo/parcel-react-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "parcel-reactjs-electron",
"version": "1.0.0",
"description": "A minimal React.js boilerplate with parcel as bundler",
"main": "main.js",
"scripts": {
"dev": "parcel ./src/index.html -d build/",
"start-dev": "ELECTRON_START_URL=http://localhost:1234 electron .",
"start": "electron .",
"build": "parcel build ./src/index.html -d build/ --public-url ./",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "parcel.reactjs.electron",
"mac": {
"category": "your.app.category.type"
},
"files": [
"main.js",
"build/*"
]
},
"keywords": [
"parcel",
"react"
],
"contributors": [
"Robin <wrobin@gmx.net> (https://www.robinwieruch.de)",
"Samppa Hynninen <samppa.hynninen@gmail.com>"
],
"license": "MIT",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron": "~1.7.8",
"electron-builder": "^19.50.0",
"electron-reload": "^1.2.2",
"parcel-bundler": "^1.3.1"
}
}