-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.6 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
{
"name": "electron-toolkit",
"version": "1.0.25",
"description": "Tools to make launching Electron apps easier",
"main": "./app/index.js",
"scripts": {
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"devServer": "cross-env NODE_ENV=development webpack-dev-server --open --hot --port=3334 --host 127.0.0.1",
"devElectron": "cross-env ELECTRON_ENV=development electron . --port=3334",
"dev": "npm run devServer & npm run devElectron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippLgh/electron-toolkit.git"
},
"author": "Philipp Langhans",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhilippLgh/electron-toolkit/issues"
},
"homepage": "https://github.com/PhilippLgh/electron-toolkit#readme",
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"jimp": "^0.2.28",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"png2icons": "^0.9.1",
"tether": "^1.4.3",
"uuid": "^3.1.0",
"vue": "^2.4.4",
"vue-router": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"style-loader": "^0.19.0",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}