mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
88 lines
3.3 KiB
JSON
88 lines
3.3 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": {
|
|
"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.23.9",
|
|
"advanced-css-reset": "^1.2.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"webext-base-css": "^1.4.4",
|
|
"webextension-polyfill-ts": "^0.26.0"
|
|
},
|
|
"devDependencies": {
|
|
"@abhijithvijayan/eslint-config": "^2.8.1",
|
|
"@abhijithvijayan/eslint-config-airbnb": "^1.1.0",
|
|
"@abhijithvijayan/tsconfig": "^1.3.0",
|
|
"@babel/core": "^7.23.9",
|
|
"@babel/eslint-parser": "^7.23.9",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
"@babel/plugin-transform-destructuring": "^7.23.3",
|
|
"@babel/plugin-transform-runtime": "^7.23.9",
|
|
"@babel/preset-env": "^7.23.9",
|
|
"@babel/preset-react": "^7.23.3",
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
"@types/react": "^17.0.75",
|
|
"@types/react-dom": "^17.0.25",
|
|
"@types/webpack": "^5.28.5",
|
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
"autoprefixer": "^10.4.17",
|
|
"babel-loader": "^9.1.3",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"copy-webpack-plugin": "^12.0.2",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^6.10.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^8.10.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"filemanager-webpack-plugin": "^8.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^9.0.2",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"mini-css-extract-plugin": "^2.7.7",
|
|
"css-minimizer-webpack-plugin": "^7.0.0",
|
|
"postcss": "^8.4.33",
|
|
"postcss-loader": "^8.1.0",
|
|
"prettier": "^3.2.4",
|
|
"resolve-url-loader": "^5.0.0",
|
|
"sass": "^1.70.0",
|
|
"sass-loader": "^14.1.0",
|
|
"terser-webpack-plugin": "^5.3.10",
|
|
"typescript": "4.9.5",
|
|
"webpack": "^5.90.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-ext-reloader": "^1.1.12",
|
|
"wext-manifest-loader": "^2.4.1",
|
|
"wext-manifest-webpack-plugin": "^1.4.0"
|
|
}
|
|
}
|