generated from Debdut/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "browser-extension",
"version": "1.0.0",
"description": "Browser Extension Boilerplate",
"engines": {
"node": ">=16.13.1",
"npm": ">=8.1.2"
},
"scripts": {
"test": "mocha",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"init:profile": "mkdir -p tmp/profile/chrome tmp/profile/brave tmp/profile/firefox",
"build": "NODE_ENV=production webpack",
"build:chrome": "NODE_ENV=production webpack --config ./webpack/chrome.js",
"build:firefox": "NODE_ENV=production webpack --config ./webpack/firefox.js",
"build:safari": "npm run init:safari && NODE_ENV=production webpack --config ./webpack/safari.js",
"watch": "NODE_ENV=development webpack -w",
"watch:chrome": "NODE_ENV=development webpack --config ./webpack/chrome.js -w",
"watch:firefox": "NODE_ENV=development webpack --config ./webpack/firefox.js -w",
"watch:safari": "npm run init:safari && NODE_ENV=development webpack --config ./webpack/safari.js -w",
"reload:chrome": "web-ext --source-dir=dist/chrome run -t chromium --chromium-binary /Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --start-url example.com --chromium-profile tmp/profile/chrome --profile-create-if-missing --keep-profile-changes",
"reload:brave": "web-ext --source-dir=dist/chrome run -t chromium --chromium-binary /Applications/Brave\\ Browser.app/Contents/MacOS/Brave\\ Browser --start-url example.com --chromium-profile tmp/profile/brave --profile-create-if-missing --keep-profile-changes",
"reload:firefox": "web-ext --source-dir=dist/firefox run --start-url example.com --firefox-profile tmp/profile/firefox --profile-create-if-missing --keep-profile-changes",
"start:chrome": "concurrently npm:watch:chrome npm:reload:chrome",
"start:brave": "concurrently npm:watch:chrome npm:reload:brave",
"start:firefox": "concurrently npm:watch:firefox npm:reload:firefox",
"start": "concurrently npm:watch:chrome npm:reload:brave npm:watch:firefox npm:reload:firefox",
"refmt": "prettier --config ./.prettierrc --write ./src/**/*.{ts,tsx,css,less,scss}"
},
"author": "Debdut Karmakar <[email protected]>",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"dayjs": "^1.11.3",
"dexie": "^3.2.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"rambda": "^7.0.3",
"react": "^18.1.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.31.3",
"react-hot-toast": "^2.2.0",
"rxjs": "^7.5.5",
"styled-components": "^5.3.5",
"unstated-next": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@types/chrome": "^0.0.181",
"@types/lodash-es": "^4.17.6",
"@types/styled-components": "^5.1.24",
"@types/webextension-polyfill": "^0.8.3",
"autoprefixer": "^10.4.4",
"babel": "^6.23.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.7",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"generate-json-from-js-webpack-plugin": "^0.1.1",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^7.0.1",
"postcss-loader": "^6.2.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"web-ext": "^6.8.0",
"webextension-polyfill": "^0.9.0",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
}
}