1d1ace40bc
See https://nest.pijul.com/n4n/rpg-cards-ng/patches for patch history
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "rpg-cards-ng",
|
|
"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.6.4",
|
|
"register-service-worker": "^1.6.2",
|
|
"vue": "^2.6.11",
|
|
"vue-router": "^3.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^2.18.0",
|
|
"@typescript-eslint/parser": "^2.18.0",
|
|
"@vue/cli-plugin-babel": "^4.2.0",
|
|
"@vue/cli-plugin-eslint": "^4.2.0",
|
|
"@vue/cli-plugin-pwa": "^4.2.0",
|
|
"@vue/cli-plugin-typescript": "^4.2.0",
|
|
"@vue/cli-service": "^4.2.0",
|
|
"@vue/eslint-config-standard": "^5.1.0",
|
|
"@vue/eslint-config-typescript": "^5.0.1",
|
|
"eslint": "^6.7.2",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"eslint-plugin-vue": "^6.1.2",
|
|
"lint-staged": "^9.5.0",
|
|
"typescript": "~3.7.5",
|
|
"vue-property-decorator": "^8.4.0",
|
|
"vue-template-compiler": "^2.6.11"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/essential",
|
|
"@vue/standard",
|
|
"@vue/typescript/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"rules": {}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"IE > 11"
|
|
],
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|