You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
4 years ago
|
{
|
||
|
"name": "chrome-extension-syncmarks",
|
||
|
"version": "1.0.0",
|
||
|
"description": "A chrome extension to sync bookmarks",
|
||
|
"private": true,
|
||
|
"scripts": {
|
||
|
"serve": "vue-cli-service serve",
|
||
|
"build": "vue-cli-service build",
|
||
|
"lint": "vue-cli-service lint"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"axios": "^0.21.1",
|
||
|
"core-js": "^3.6.5",
|
||
|
"normalize.css": "^8.0.1",
|
||
|
"vue": "^2.6.11"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@vue/cli-plugin-babel": "~4.5.0",
|
||
|
"@vue/cli-plugin-eslint": "~4.5.0",
|
||
|
"@vue/cli-service": "~4.5.0",
|
||
|
"@vue/eslint-config-standard": "^5.1.2",
|
||
|
"babel-eslint": "^10.1.0",
|
||
|
"eslint": "^6.7.2",
|
||
|
"eslint-plugin-import": "^2.20.2",
|
||
|
"eslint-plugin-node": "^11.1.0",
|
||
|
"eslint-plugin-promise": "^4.2.1",
|
||
|
"eslint-plugin-standard": "^4.0.0",
|
||
|
"eslint-plugin-vue": "^6.2.2",
|
||
|
"html-webpack-plugin": "^5.3.1",
|
||
|
"less": "^3.0.4",
|
||
|
"less-loader": "^5.0.0",
|
||
|
"lint-staged": "^9.5.0",
|
||
|
"vue-template-compiler": "^2.6.11"
|
||
|
},
|
||
|
"gitHooks": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.{js,jsx,vue}": [
|
||
|
"vue-cli-service lint",
|
||
|
"git add"
|
||
|
]
|
||
|
}
|
||
|
}
|