-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
109 lines (109 loc) · 2.98 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
{
"name": "vue-skeleton-mvp",
"version": "5.0.20",
"description": "VueJS Vuetify Vue Router Vuex - Basic Project Skeleton - Starter Web App. Written on JavaScript using async/await.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davellanedam/vue-skeleton-mvp.git"
},
"scripts": {
"generate-build-version": "node generate-build-version",
"serve": "vue-cli-service serve",
"build": "npm run generate-build-version && vue-cli-service build",
"format": "prettier --write --config .prettierrc \"**/*.js\"",
"lint": "vue-cli-service lint --fix",
"test:e2e": "vue-cli-service test:e2e --mode e2e",
"test:unit": "vue-cli-service test:unit",
"remark": "remark . -o",
"ci": "vue-cli-service test:e2e --env API_URL=https://api-demo.daniel-avellaneda.com,ENV=ci --headless --config video=false",
"coverage": "nyc report --reporter=text-summary"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run remark"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@mdi/font": "^5.9.55",
"axios": "^0.21.1",
"core-js": "^3.8.3",
"date-fns": "^2.16.1",
"remark-cli": "^9.0.0",
"vee-validate": "^3.4.5",
"vue": "^2.6.12",
"vue-analytics": "^5.22.1",
"vue-country-flag": "^2.0.3",
"vue-i18n": "^8.22.4",
"vue-meta": "^2.4.0",
"vue-resize-text": "^0.1.1",
"vue-router": "^3.4.9",
"vuetify": "^2.4.3",
"vuetify-confirm": "^2.0.6",
"vuex": "^3.6.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.2",
"@kazupon/vue-i18n-loader": "^0.5.0",
"@vue/babel-preset-app": "^4.5.11",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-e2e-cypress": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-unit-mocha": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"faker": "^5.1.0",
"fibers": "^5.0.0",
"husky": "^4.3.8",
"istanbul-lib-coverage": "^3.0.0",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.3",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-cli-plugin-vuetify": "^2.0.9",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0"
},
"keywords": [
"vuejs",
"vue-router",
"vuex",
"vuetify",
"javascript",
"i18n",
"eslint",
"skeleton",
"async",
"starter",
"webapp",
"web",
"app",
"await",
"mvp",
"frontend",
"testing",
"prettier",
"cypress",
"mocha",
"chai"
]
}