mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
63 lines
2.5 KiB
JSON
63 lines
2.5 KiB
JSON
{
|
|
"name": "web-extension-starter",
|
|
"version": "1.0.0",
|
|
"description": "Web extension starter",
|
|
"private": true,
|
|
"main": "src/scripts/background.js",
|
|
"repository": "https://github.com/abhijithvijayan/web-extension-starter.git",
|
|
"author": "abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch --mode=development",
|
|
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch --mode=development",
|
|
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch --mode=development",
|
|
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack --mode=production",
|
|
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack --mode=production",
|
|
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack --mode=production",
|
|
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"autoprefixer": "^9.7.0",
|
|
"babel-eslint": "10.0.3",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"copy-webpack-plugin": "^5.0.4",
|
|
"cross-env": "^6.0.3",
|
|
"css-loader": "^3.2.0",
|
|
"eslint": "^6.5.1",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-config-onepass": "1.4.2",
|
|
"eslint-config-prettier": "^6.4.0",
|
|
"eslint-plugin-html": "^6.0.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"eslint-plugin-react": "^7.16.0",
|
|
"eslint-plugin-react-hooks": "^2.2.0",
|
|
"extract-loader": "^3.1.0",
|
|
"file-loader": "^4.2.0",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"node-sass": "^4.13.0",
|
|
"postcss-loader": "^3.0.0",
|
|
"prettier": "^1.18.2",
|
|
"resolve-url-loader": "^3.1.0",
|
|
"sass-loader": "^8.0.0",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.9",
|
|
"webpack-dev-server": "^3.9.0",
|
|
"webpack-fix-style-only-entries": "^0.4.0",
|
|
"zip-webpack-plugin": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.6.3",
|
|
"terser-webpack-plugin": "^2.2.1",
|
|
"webextension-polyfill": "^0.5.0"
|
|
}
|
|
}
|