-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "electron-startup",
"version": "1.0.0",
"description": "electron-startup",
"main": "process/index.js",
"scripts": {
"build": "rimraf dist/release/. && webpack --config ./build/webpack.build.config.js",
"build:dev": "rimraf dist/dev/. && webpack -d --config ./build/webpack.dev.config.js --watch",
"start": "cross-env NODE_ENV=development electron dist/release/.",
"start:dev": "cross-env NODE_ENV=development electron dist/dev/."
},
"author": "albert",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/fmfe/electron-startup.git"
},
"dependencies": {
"cross-env": "^5.0.1",
"glob": "^7.1.2",
"rimraf": "^2.6.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"electron": "^1.6.11",
"electron-builder": "^19.12.0",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"style-loader": "^0.18.2",
"vue": "^2.3.4",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.0",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.3.4",
"vuex": "^2.3.1",
"webpack": "2.2.0",
"webpack-dev-server": "^2.5.0"
}
}