-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
{
"name": "easy",
"version": "0.0.1",
"description": "Simple build tools by Electron",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules && cp ./resource/index.html ./dist/ && cp ./resource/remote.js ./dist/",
"start": "cross-env NODE_ENV=development electron .",
"build:electron": "electron-packager ./ EASY --platform=darwin --arch=x64 --ignore=node_modules --electronVersion=1.4.13 --overwrite --icon=./logo/cli.icns",
"appdmg": "appdmg appdmg.json ~/Desktop/EASY.dmg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrawAChicken/Easy-Electron.git"
},
"keywords": [
"Electron",
"easy",
"Electron-cli",
"electron-vue",
"vue-electron"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DrawAChicken/Easy-Electron/issues"
},
"homepage": "https://github.com/DrawAChicken/Easy-Electron/blob/master/README.md",
"dependencies": {
"animate.css": "^3.5.2",
"vue": "^2.2.1",
"vue-router": "^2.5.3",
"vuex": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.28.2",
"electron-packager": "^8.7.0",
"element-ui": "^1.3.4",
"file-loader": "^0.9.0",
"node-sass": "^4.5.0",
"normalize.css": "^7.0.0",
"sass-loader": "^5.0.1",
"style-loader": "^0.18.1",
"url-loader": "^0.5.8",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}