-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.31 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bookmarking-app",
"version": "1.0.0",
"description": "A Bookmarking App using Electron, VueJs and Firebase",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"dist": "build"
},
"build": {
"appId": "com.bookmarkingapp",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"keywords": [
"electron",
"vuejs",
"firebase",
"bookmark"
],
"author": "Barayuda Gautama",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^5.8.38",
"css-loader": "^0.23.1",
"electron-builder": "^19.52.1",
"electron-prebuilt": "^0.37.2",
"vue-hot-reload-api": "^1.3.2",
"vue-html-loader": "^1.2.0",
"vue-loader": "^8.2.2",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"firebase": "^2.4.1",
"jquery": "^2.2.2",
"vue": "^1.0.19"
}
}