-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.88 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
83
84
85
86
{
"name": "reading-list-browser-extension",
"version": "0.0.1",
"description": "ReadlingList Browser Extension",
"volta": {
"node": "16.20.1"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint:fix": "eslint src --ext .ts,.tsx,.js,jsx --fix",
"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=development webpack --config ./webpack/firefox.js",
"build:safari": "NODE_ENV=development webpack --config ./webpack/safari.js && xcrun safari-web-extension-converter dist/safari-prebuild --project-location dist/safari --force --no-open && rm -rf safari-prebuild",
"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"
},
"author": "Debdut Karmakar <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"dexie": "^3.2.1",
"lodash": "^4.17.21",
"rambda": "^7.0.3",
"react": "^18.1.0",
"react-dom": "^18.0.0",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@types/chrome": "^0.0.193",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/webextension-polyfill": "^0.8.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"autoprefixer": "^10.4.4",
"babel": "^6.23.0",
"babel-loader": "^8.2.4",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.45.0",
"eslint-config-ts-prefixer": "^0.18.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"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",
"prettier": "^3.0.0",
"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.9.5",
"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.9.3",
"webpack-merge": "^5.8.0"
}
}