43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint"
|
|
},
|
|
"dependencies": {
|
|
"core-js": "^3.3.2",
|
|
"vue": "^2.6.10",
|
|
"vue-class-component": "^7.0.2",
|
|
"vue-property-decorator": "^8.3.0",
|
|
"vue-router": "^3.1.3",
|
|
"vuex": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-babel": "^4.0.0",
|
|
"@vue/cli-plugin-eslint": "^4.0.0",
|
|
"@vue/cli-plugin-router": "^4.0.0",
|
|
"@vue/cli-plugin-typescript": "^4.0.0",
|
|
"@vue/cli-plugin-vuex": "^4.0.0",
|
|
"@vue/cli-service": "^4.0.0",
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
"@vue/eslint-config-typescript": "^4.0.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-plugin-vue": "^5.0.0",
|
|
"lint-staged": "^9.4.2",
|
|
"typescript": "~3.5.3",
|
|
"vue-template-compiler": "^2.6.10"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,vue,ts}": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|