{ "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": "abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com>", "license": "MIT", "engines": { "node": ">=8 <=12", "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", "lint:fix": "eslint . --ext .ts --fix" }, "dependencies": { "@babel/runtime": "^7.8.4", "react": "^16.12.0", "react-dom": "^16.12.0", "webextension-polyfill-ts": "^0.12.0" }, "devDependencies": { "@babel/core": "^7.8.4", "@babel/plugin-proposal-object-rest-spread": "^7.8.3", "@babel/plugin-transform-destructuring": "^7.8.3", "@babel/plugin-transform-runtime": "^7.8.3", "@babel/preset-env": "^7.8.4", "@types/react": "^16.9.19", "@types/react-dom": "^16.9.5", "@types/webpack": "^4.41.3", "@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/parser": "^2.18.0", "autoprefixer": "^9.7.4", "awesome-typescript-loader": "^5.2.1", "babel-eslint": "10.0.3", "clean-webpack-plugin": "^3.0.0", "copy-webpack-plugin": "^5.1.1", "cross-env": "^6.0.3", "css-loader": "^3.4.2", "eslint": "^6.8.0", "eslint-config-airbnb": "^18.0.1", "eslint-config-onepass": "2.1.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-html": "^6.0.0", "eslint-plugin-import": "^2.20.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-prettier": "^3.1.2", "eslint-plugin-react": "^7.18.0", "eslint-plugin-react-hooks": "^2.3.0", "html-webpack-plugin": "^3.2.0", "mini-css-extract-plugin": "^0.9.0", "node-sass": "^4.13.1", "postcss-loader": "^3.0.0", "prettier": "^1.19.1", "resolve-url-loader": "^3.1.1", "sass-loader": "^8.0.2", "terser-webpack-plugin": "^2.3.3", "typescript": "^3.7.5", "webpack": "^4.41.5", "webpack-cli": "^3.3.10", "webpack-extension-reloader": "^1.1.4", "wext-manifest": "^2.1.0", "write-webpack-plugin": "^1.1.0", "zip-webpack-plugin": "^3.0.0" } }