-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "jsproxy",
"version": "0.1.0",
"author": {
"name": "Jens Sproede",
"email": "[email protected]"
},
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@types/http-proxy": "^1.17.0",
"core-js": "^2.6.5",
"http-proxy": "^1.17.0",
"moment": "^2.24.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.2.1",
"vue-router": "^3.0.7",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-plugin-typescript": "^3.9.0",
"@vue/cli-service": "^3.9.3",
"electron": "^5.0.0",
"sass": "^1.22.9",
"sass-loader": "^7.1.0",
"typescript": "^3.5.3",
"vue-cli-plugin-electron-builder": "^1.3.6",
"vue-template-compiler": "^2.6.10"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}