{ "name": "web-extension-starter", "version": "2.0.0", "description": "Web extension starter using react and typescript", "private": true, "repository": "https://github.com/abhijithvijayan/web-extension-starter.git", "author": { "name": "abhijithvijayan", "email": "email@abhijithvijayan.in", "url": "https://abhijithvijayan.in" }, "license": "MIT", "engines": { "node": ">=10.0.0", "yarn": ">= 1.0.0" }, "scripts": { "dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch", "dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch", "dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch", "build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack", "build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack", "build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack", "build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "eslint . --ext .ts,.tsx --fix" }, "dependencies": { "@babel/runtime": "^7.10.2", "advanced-css-reset": "^1.1.1", "emoji-log": "^1.0.2", "react": "^16.13.1", "react-dom": "^16.13.1", "webext-base-css": "^1.1.0", "webextension-polyfill-ts": "^0.16.0" }, "devDependencies": { "@abhijithvijayan/eslint-config": "^1.4.1", "@abhijithvijayan/tsconfig": "^1.2.0", "@babel/core": "^7.10.2", "@babel/plugin-proposal-class-properties": "^7.10.1", "@babel/plugin-proposal-object-rest-spread": "^7.10.1", "@babel/plugin-transform-destructuring": "^7.10.1", "@babel/plugin-transform-runtime": "^7.10.1", "@babel/preset-env": "^7.10.2", "@babel/preset-react": "^7.10.1", "@babel/preset-typescript": "^7.10.1", "@types/react": "^16.9.35", "@types/react-dom": "^16.9.8", "@types/webpack": "^4.41.17", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", "autoprefixer": "^9.8.0", "babel-eslint": "^10.1.0", "babel-loader": "^8.1.0", "clean-webpack-plugin": "^3.0.0", "copy-webpack-plugin": "^5.1.1", "cross-env": "^6.0.3", "css-loader": "^3.5.3", "eslint": "^6.8.0", "eslint-config-airbnb": "^18.1.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-react": "^7.20.0", "eslint-plugin-react-hooks": "^4.0.4", "fork-ts-checker-webpack-plugin": "^4.1.6", "html-webpack-plugin": "^3.2.0", "mini-css-extract-plugin": "^0.9.0", "node-sass": "^4.14.1", "optimize-css-assets-webpack-plugin": "^5.0.3", "postcss-loader": "^3.0.0", "prettier": "^2.0.5", "resolve-url-loader": "^3.1.1", "sass-loader": "^8.0.2", "terser-webpack-plugin": "^2.3.7", "typescript": "^3.9.5", "webpack": "^4.43.0", "webpack-cli": "^3.3.11", "webpack-extension-reloader": "^1.1.4", "wext-manifest-loader": "^2.0.0", "wext-manifest-webpack-plugin": "^1.1.1", "zip-webpack-plugin": "^3.0.0" } }