forked from brunodgz/stencil-electron-st
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "stencil-electron-st",
"private": true,
"version": "0.0.1",
"main": "main.js",
"description": "Stencil App Starter",
"scripts": {
"build": "stencil build --es5 && node parseHTML.js pro",
"start": "npm run clean:js && concurrently \"stencil build --dev --es5 --watch --serve\" \"wait-on http://localhost:3333/index.html && electron .\"",
"test": "stencil test --spec --e2e",
"electron": "node parseHTML.js dev && electron .",
"test.watch": "stencil test --spec --e2e --watchAll",
"pack": "yarn run build && electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"dist": "stencil build && node parseHTML.js pro && electron-builder",
"clean:js": "del-cli www/",
"parse": "node parseHTML.js dev"
},
"dependencies": {
"@stencil/core": "0.18.0",
"@stencil/router": "~0.3.1",
"electron-is-dev": "^1.0.1"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^11.9.5",
"concurrently": "^4.1.0",
"del-cli": "^2.0.0",
"electron": "^4.0.5",
"electron-builder": "^20.38.5",
"wait-on": "^3.2.0",
"workbox-build": "3.4.1"
},
"build": {
"productName": "MyApp",
"compression": "store",
"forceCodeSigning": false,
"asar": false
}
}