This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "Speeco",
"version": "1.0.0",
"description": "A speech to text converter",
"author": {
"name": "Ipaye Alameen",
"email": "Akinkunmi007@gmail.com",
"url": "https:ipaye.github.io"
},
"homepage": "https://ipaye.github.io/final-year-project",
"private": true,
"scripts": {
"deploy": "gh-pages -d dist",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"build:electron": "vue-cli-service build:electron",
"serve:electron": "vue-cli-service serve:electron",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.4",
"@vue/cli-plugin-e2e-nightwatch": "^3.0.4",
"@vue/cli-plugin-eslint": "^3.0.4",
"@vue/cli-plugin-unit-mocha": "^3.0.4",
"@vue/cli-service": "^3.0.4",
"@vue/eslint-config-standard": "^3.0.4",
"@vue/test-utils": "^1.0.0-beta.20",
"chai": "^4.1.2",
"electron": "^7.2.4",
"gh-pages": "^2.0.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-cli-plugin-electron-builder": "^1.0.0-rc.3",
"vue-template-compiler": "^2.5.17"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "dist_electron/bundled/background.js"
}