-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.39 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
{
"name": "my-account-manager",
"version": "2.6.1",
"author": "Fabrice Bellingard <bellingard@gmail.com>",
"description": "My Account Manager",
"license": "LGPL-3.0",
"private": true,
"main": "background.js",
"scripts": {
"clean": "rm -rf dist_electron/* && rm -rf coverage/*",
"test": "vue-cli-service test:unit",
"build": "vue-cli-service electron:build",
"serve": "vue-cli-service electron:serve",
"lint": "vue-cli-service lint",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"chart.js": "^2.8.0",
"csvtojson": "^2.0.8",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"material-design-icons-iconfont": "^5.0.1",
"roboto-fontface": "*",
"vue": "^2.5.22",
"vue-chartjs": "^3.4.2",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.1.1",
"vue-router": "^3.0.6",
"vuetify": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.133",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-typescript": "^3.4.0",
"@vue/cli-plugin-unit-jest": "^3.4.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.3",
"electron": "^3.0.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"mkdirs": "^0.0.2",
"rimraf": "^2.6.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-jest": "^24.0.2",
"typescript": "~3.5.1",
"typescript-eslint-parser": "^22.0.0",
"vue-cli-plugin-electron-builder": "^1.0.0-rc.10",
"vue-cli-plugin-vuetify": "^0.5.0",
"vue-template-compiler": "^2.5.22",
"vuetify-loader": "^1.0.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard",
"@vue/typescript"
],
"rules": {
"arrow-parens": 0,
"generator-star-spacing": 0,
"space-before-function-paren": [
"error",
"never"
]
},
"parserOptions": {
"parser": "typescript-eslint-parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}