-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.55 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
{
"name": "electron-parcel-react-starter",
"productName": "electron-parcel-react-starter",
"version": "0.0.1",
"description": "Get up and running quickly with Electron and React using Parcel",
"license": "MIT",
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"browserslist": [
"last 4 versions"
],
"main": "main.js",
"scripts": {
"predev": "parcel build src/markup/index.pug --target electron -d app --public-url ./",
"dev": "browser-sync start --server app --files app --no-open & parcel watch src/markup/index.pug --target electron -d app --public-url ./ & nodemon --ignore src/ --ignore app/ --exec \"electron .\"",
"rundev": "cross-env NODE_ENV=development electron .",
"preprod": "parcel build src/markup/index.pug --target electron -d app --public-url ./",
"prod": "electron .",
"prepackage": "cross-env NODE_ENV=production parcel build src/markup/index.pug --target electron -d app --public-url ./",
"package": "electron-packager . --out=./release-builds"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"cross-env": "^7.0.2",
"electron": "^9.0.0",
"electron-packager": "^14.2.1",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"pug": "^3.0.0",
"stylus": "^0.54.8"
}
}