forked from gilmarsquinelato/i18n-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.72 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "i18n-manager",
"version": "3.0.4",
"main": "build/main/index.js",
"license": "MIT",
"description": "The app that will help to manage your app translations",
"author": {
"email": "gilmarsquinelato@gmail.com",
"name": "Gilmar Quinelato",
"url": "https://www.github.com/gilmarsquinelato"
},
"module": "commonjs",
"homepage": "./",
"scripts": {
"start": "cross-env NODE_ENV=development yarn start:main & yarn start:web",
"build": "cross-env NODE_ENV=production yarn build:all && electron-builder -wml",
"start:web": "vue-cli-service serve",
"build:web": "vue-cli-service build",
"start:main": "yarn build:main && electron --inspect=9229 --remote-debugging-port=9222 .",
"build:main": "tsc -d -p ./main",
"watch:main": "tsc -w -p ./main",
"build:all": "yarn clean && yarn build:web && yarn build:main",
"postinstall": "electron-builder install-app-deps",
"clean": "rimraf build dist",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"devDependencies": {
"@sentry/cli": "^1.46.0",
"@sentry/electron": "^1.0.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.31",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-router": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-vuex": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"codacy-coverage": "^3.4.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"electron": "^8.2.0",
"electron-builder": "^22.5.0",
"electron-download": "^4.1.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.0.2",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"typescript": "^3.8.3",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3"
},
"dependencies": {
"@mdi/font": "^5.0.45",
"@vue/composition-api": "^0.5.0",
"axios": "^0.19.2",
"deepmerge": "^4.2.2",
"electron-devtools-installer": "^2.2.4",
"electron-is-dev": "^1.2.0",
"electron-updater": "^4.3.0",
"fast-deep-equal": "^3.1.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20",
"node-watch": "^0.6.3",
"rimraf": "^3.0.2",
"roboto-fontface": "*",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-router": "^3.1.6",
"vue-virtual-scroller": "^1.0.1",
"vuetify": "^2.2.20",
"vuex": "^3.1.3",
"vuex-class": "^0.3.2",
"vuex-module-decorators": "^0.16.1",
"snyk": "^1.316.1"
},
"browserslist": [
"last 2 Chrome versions"
],
"build": {
"productName": "i18n Manager",
"appId": "com.i18n-manager.app",
"files": [
"build/**/*",
"node_modules/**/*",
"icons/**/*",
"package.json"
],
"icon": "./icons/icon.png",
"mac": {
"publish": [
"github"
],
"category": "public.app-category.developer-tools",
"target": [
"dmg"
],
"extendInfo": {
"CFBundleDocumentTypes": [
{
"CFBundleTypeName": "Folder",
"CFBundleTypeOSTypes": [
"fold"
],
"CFBundleTypeRole": "Editor",
"LSIsAppleDefaultForType": true
}
]
}
},
"linux": {
"publish": [
"github"
],
"category": "Development"
},
"win": {
"publish": [
"github"
]
}
},
"snyk": true
}