-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.48 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.48 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
{
"name": "motorauto",
"version": "0.1.0",
"private": true,
"description": "Digital Workshop",
"keywords": [
"i18n",
"vue",
"vuetify"
],
"homepage": "https://github.com/krbaio3/gestionMotor-vue#readme",
"bugs": {
"url": "https://github.com/krbaio3/gestionMotor-vue/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krbaio3/gestionMotor-vue.git"
},
"license": "MIT",
"author": "krbaio3",
"main": "src/main.ts",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "vue-cli-service build",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"dependencies": {
"applicationinsights": "^1.4.2",
"axios": "^0.19.0",
"bootstrap-vue": "^2.0.4",
"core-js": "^2.6.5",
"gh-pages": "^2.1.1",
"vee-validate": "^3.0.11",
"vue": "^2.6.10",
"vue-axios": "^2.1.5",
"vue-blockui": "^1.1.7",
"vue-class-component": "^7.0.2",
"vue-i18n": "^8.0.0",
"vue-loading-overlay": "^3.2.0",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3",
"vuejs-logger": "^1.5.3",
"vuetify": "^2.1.0",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"vuex-persist": "^2.1.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"@types/jest": "^23.1.4",
"@types/lru-cache": "^5.1.0",
"@types/webpack": "^4.4.0",
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-e2e-cypress": "^3.11.0",
"@vue/cli-plugin-typescript": "^3.12.0",
"@vue/cli-plugin-unit-jest": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"lint-staged": "^8.1.5",
"lru-cache": "^5.1.1",
"node-sass": "^4.12.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"ts-jest": "^23.0.0",
"typescript": "^3.4.3",
"vue-cli-plugin-i18n": "^0.6.0",
"vue-cli-plugin-vuetify": "^1.1.1",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}