mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
81 lines
3.1 KiB
JSON
81 lines
3.1 KiB
JSON
{
|
|
"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": ">=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",
|
|
"lint:fix": "eslint . --ext .ts --fix"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.9.2",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"webext-base-css": "^1.0.0",
|
|
"webextension-polyfill-ts": "^0.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
|
|
"@babel/plugin-transform-destructuring": "^7.8.8",
|
|
"@babel/plugin-transform-runtime": "^7.9.0",
|
|
"@babel/preset-env": "^7.9.0",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"@babel/preset-typescript": "^7.9.0",
|
|
"@types/react": "^16.9.27",
|
|
"@types/react-dom": "^16.9.5",
|
|
"@types/webpack": "^4.41.9",
|
|
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
"@typescript-eslint/parser": "^2.26.0",
|
|
"autoprefixer": "^9.7.5",
|
|
"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.4.2",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb": "^18.1.0",
|
|
"eslint-config-onepass": "2.2.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-html": "^6.0.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-react-hooks": "^3.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^4.1.2",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"mini-css-extract-plugin": "^0.9.0",
|
|
"node-sass": "^4.13.1",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
|
"postcss-loader": "^3.0.0",
|
|
"prettier": "^2.0.2",
|
|
"resolve-url-loader": "^3.1.1",
|
|
"sass-loader": "^8.0.2",
|
|
"terser-webpack-plugin": "^2.3.5",
|
|
"typescript": "^3.8.3",
|
|
"webpack": "^4.42.1",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-extension-reloader": "^1.1.4",
|
|
"wext-manifest-loader": "^1.0.1",
|
|
"wext-manifest-webpack-plugin": "^1.0.3",
|
|
"zip-webpack-plugin": "^3.0.0"
|
|
}
|
|
}
|