{ "devDependencies": { "@open-wc/building-rollup": "^1.10.0", "@open-wc/eslint-config": "^4.3.0", "@open-wc/testing": "^2.5.33", "@typescript-eslint/eslint-plugin": "^4.28.3", "@typescript-eslint/parser": "^4.28.3", "@web/dev-server": "^0.1.18", "@web/test-runner": "^0.12.20", "concurrently": "^5.3.0", "deepmerge": "^4.2.2", "eslint": "^7.30.0", "eslint-config-prettier": "^7.2.0", "husky": "^4.3.8", "lint-staged": "^10.5.4", "prettier": "^2.2.1", "rimraf": "^3.0.2", "rollup": "^2.53.1", "tslib": "^2.3.0", "typescript": "^4.3.5" }, "scripts": { "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore", "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore", "test": "tsc && wtr --coverage", "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"", "build": "rimraf dist && tsc && rollup -c rollup.config.js", "start:build": "npm run build && web-dev-server --root-dir dist --app-index index.html --open --compatibility none", "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"" }, "name": "better-setup-mic", "version": "0.0.1", "description": "A website dedicated to helping you get the best out of your audio setup", "author": "@jlengrand", "license": "MIT", "dependencies": { "lit": "^2.0.0-rc.2" }, "eslintConfig": { "parser": "@typescript-eslint/parser", "extends": [ "@open-wc/eslint-config", "eslint-config-prettier" ], "plugins": [ "@typescript-eslint" ], "rules": { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "error" ], "import/no-unresolved": "off", "import/extensions": [ "error", "always", { "ignorePackages": true } ] } }, "prettier": { "singleQuote": true, "arrowParens": "avoid" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }