-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "electron-vue-webpack",
"version": "1.0.0",
"description": "A minimal Electron + Vue 2 + Webpack 2 setup with few dependencies for quick development.",
"main": "main.js",
"scripts": {
"dev": "webpack",
"start": "electron . --no-sandbox"
},
"author": "J. Renato Ramos González <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/pastahito/electron-vue-webpack.git"
},
"license": "WTFPL",
"dependencies": {
"vue": "^2.0.1"
},
"devDependencies": {
"css-loader": "^3.4.2",
"electron": "^8.1.1",
"electron-reload": "^1.5.0",
"fibers": "^4.0.2",
"file-loader": "^6.0.0",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"bugs": {
"url": "https://github.com/pastahito/electron-vue-webpack/issues"
},
"homepage": "https://github.com/pastahito/electron-vue-webpack#readme"
}