-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.vue3.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.vue3.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"dependencies": {
"core-js": "^3.8.1",
"vue": "^3.0.4",
"vue-router": "^4.0.0-rc.6",
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.2",
"@testing-library/dom": "^7.28.1",
"@testing-library/vue": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-e2e-cypress": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-router": "^4.5.9",
"@vue/cli-plugin-typescript": "^4.5.9",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-plugin-vuex": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/compiler-sfc": "^3.0.4",
"@vue/devtools": "^6.0.0-beta.2",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.12",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-testing-library": "^3.10.1",
"eslint-plugin-vue": "^7.2.0",
"lint-staged": "^10.5.3",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"typescript": "^4.1.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"npm run lint:all"
]
}
}