| { |
| "name": "testgrid-index", |
| "description": "Webcomponent testgrid-index following open-wc recommendations", |
| "license": "Apache-2.0", |
| "author": "testgrid-index", |
| "version": "0.0.0", |
| "scripts": { |
| "lint": "eslint --ext .ts,.html . && prettier \"**/*.ts\" --check", |
| "format": "eslint --ext .ts,.html . --fix && prettier \"**/*.ts\" --write", |
| "test": "tsc && wtr --coverage", |
| "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"", |
| "storybook": "tsc && npm run analyze -- --exclude dist && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"", |
| "storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook", |
| "build": "rimraf dist && tsc && rollup -c rollup.config.js && npm run analyze -- --exclude dist", |
| "start:build": "web-dev-server --root-dir dist --app-index index.html --open", |
| "analyze": "cem analyze --litelement", |
| "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"" |
| }, |
| "dependencies": { |
| "@material/mwc-button": "^0.27.0", |
| "@material/mwc-list": "^0.27.0", |
| "@protobuf-ts/plugin": "^2.8.2", |
| "lit": "^2.0.2" |
| }, |
| "devDependencies": { |
| "@babel/preset-env": "^7.16.4", |
| "@custom-elements-manifest/analyzer": "^0.4.17", |
| "@open-wc/building-rollup": "^2.0.2", |
| "@open-wc/eslint-config": "^8.0.2", |
| "@open-wc/testing": "^3.1.6", |
| "@rollup/plugin-babel": "^5.3.0", |
| "@rollup/plugin-node-resolve": "^13.0.6", |
| "@typescript-eslint/eslint-plugin": "^4.33.0", |
| "@typescript-eslint/parser": "^4.33.0", |
| "@web/dev-server": "^0.1.34", |
| "@web/dev-server-storybook": "^0.5.4", |
| "@web/rollup-plugin-html": "^1.11.0", |
| "@web/rollup-plugin-import-meta-assets": "^1.0.7", |
| "@web/test-runner": "^0.14.0", |
| "babel-plugin-template-html-minifier": "^4.1.0", |
| "concurrently": "^5.3.0", |
| "deepmerge": "^4.2.2", |
| "eslint": "^7.32.0", |
| "eslint-config-prettier": "^8.3.0", |
| "husky": "^4.3.8", |
| "lint-staged": "^10.5.4", |
| "prettier": "^2.4.1", |
| "rimraf": "^3.0.2", |
| "rollup": "^2.60.0", |
| "rollup-plugin-terser": "^7.0.2", |
| "rollup-plugin-workbox": "^6.2.0", |
| "tslib": "^2.3.1", |
| "typescript": "^4.5.2" |
| }, |
| "eslintConfig": { |
| "parser": "@typescript-eslint/parser", |
| "extends": [ |
| "@open-wc", |
| "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" |
| ] |
| }, |
| "customElements": "custom-elements.json" |
| } |