-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
108 lines (108 loc) · 3.39 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "electron-vue-boilerplate",
"version": "2.2.1",
"description": "Simple boilerplate for building Vue app with Electron and Webpack.",
"main": "dist/electron-app/main.js",
"scripts": {
"dev": "npm run watch:vue-app",
"app": "npm run start",
"start": "npm run build:electron-app-dev && npm run start:electron-app",
"start:electron-app": "npx electron ./ --disable-gpu",
"build": "npm run build:electron-app && npx npm run build:vue-app",
"build:electron-app": "npx webpack --env prod --config webpack-electron-app.config.js --progress --color && npm run copy:electron-app-assets",
"build:electron-app-dev": "npx webpack --config webpack-electron-app.config.js --progress --color && npm run copy:electron-app-assets",
"copy:electron-app-assets": "npx ncp ./src/electron-app/assets ./dist/electron-app/assets",
"build:vue-app": "npx webpack --env prod --config webpack-vue-app.config.js --progress --color",
"watch:vue-app": "npx webpack serve --config webpack-vue-app.config.js --progress --color",
"pack": "npm run build && npx electron-builder --dir",
"dist": "npm run build && npx electron-builder",
"dist:all": "npm run build && npx electron-builder -wml --x64",
"dist:w": "npm run build && npx electron-builder -w --x64",
"dist:m": "npm run build && npx electron-builder -m --x64",
"dist:l": "npm run build && npx electron-builder -l --x64",
"postinstall": "npx electron-builder install-app-deps",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "app.id",
"productName": "App",
"files": [
"dist/**/*",
"!node_modules${/*}"
],
"directories": {
"buildResources": "dist",
"output": "build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverfindl/electron-vue-boilerplate.git"
},
"keywords": [
"electron",
"webpack",
"vue",
"vue-router",
"vuex",
"sass",
"postcss",
"purgecss",
"svgo",
"terser",
"eslint",
"stylelint",
"boilerplate",
"electron-vue-boilerplate"
],
"author": "Oliver Findl",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverfindl/electron-vue-boilerplate/issues"
},
"homepage": "https://github.com/oliverfindl/electron-vue-boilerplate#readme",
"dependencies": {
"vue": "^3.0.11"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@vue/compiler-sfc": "^3.0.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.4",
"devtron": "^1.4.0",
"electron": "^12.0.7",
"electron-builder": "^22.10.5",
"eslint": "^7.26.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^7.9.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"ncp": "^2.0.0",
"node-sass": "^6.0.0",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"postcss-scss": "^3.0.5",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0",
"stylelint-webpack-plugin": "^2.1.1",
"svgo": "^2.3.0",
"svgo-loader": "^3.0.0",
"terser": "^5.7.0",
"terser-webpack-plugin": "^5.1.2",
"vue-devtools": "^5.1.4",
"vue-eslint-parser": "^7.6.0",
"vue-loader": "^16.2.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}