-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.36 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "MirrorsPhoto",
"version": "0.10.5",
"author": "jonkofee <jonkofee@icloud.com>, klimash <andrey.klimash@gmail.com>",
"description": "Vue.js SPA for Mirror's Photo",
"license": null,
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/MirrorsPhoto/electron"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack",
"build": "rimraf ./dist && webpack",
"release": "rimraf ./app && bash build/sign.sh"
},
"build": {
"productName": "Mirrors Photo",
"artifactName": "${name}.${ext}",
"afterSign": "electron-builder-notarize",
"appId": "com.mirrors.mac.new",
"directories": {
"output": "app"
},
"target": [
"mas"
],
"files": [
"dist/**/*",
"embedded.provisionprofile",
"package.json"
],
"mac": {
"category": "public.app-category.business",
"target": [
"mas",
"pkg",
"dmg"
],
"entitlementsInherit": "build/entitlements.mac.plist",
"identity": "M85FTR22CA",
"type": "distribution",
"icon": "build/icon.icns",
"hardenedRuntime": true,
"extendInfo": {
"CFBundleLocalizations": [
"ru"
]
}
},
"mas": {
"entitlementsInherit": "build/entitlements.mas.plist",
"type": "distribution",
"category": "public.app-category.business"
},
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"dependencies": {
"axios": "0.18.1",
"countup.js": "^1.9.2",
"jwt-decode": "^2.2.0",
"online-js": "^1.0.2",
"vue": "^2.5.3",
"vue-electron": "^1.0.6",
"vuex": "^3.0.1",
"ws": "^3.3.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2017": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"electron": "11",
"electron-builder": "22.4.0",
"electron-builder-notarize": "^1.1.2",
"electron-devtools-installer": "^2.2.4",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"sass-loader": "^6.0.6",
"svg-spritemap-webpack-plugin": "^1.0.3",
"vue-loader": "^12.2.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.8.1",
"webpack-shell-plugin": "^0.5.0"
},
"babel": {
"presets": [
"es2017"
]
}
}