This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.63 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
{
"name": "buywithbitcoin",
"version": "1.5.4",
"private": true,
"description": "Get 5-33% off Amazon by using Bitcoin",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build-dev",
"start-ff": "web-ext run --target=firefox-desktop --source-dir ./dist/",
"deploy-patch": "npx mversion patch -m && npm run build-prod && npm run compress-build",
"deploy-minor": "npx mversion minor -m && npm run build-prod && npm run compress-build",
"deploy-major": "npx mversion major -m && npm run build-prod && npm run compress-build",
"build-dev": "./node_modules/.bin/webpack --watch --mode development",
"build-prod": "./node_modules/.bin/webpack --mode production",
"clean": "rm -rf ./dist",
"compress-build": "cd ./dist && web-ext build"
},
"dependencies": {
"preact": "^10.5.14",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-thunk": "^2.2.0",
"styled-components": "^5.3.1",
"webext-redux": "^2.1.7"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-react-hooks": "^4.2.0",
"mixin-deep": "^2.0.1",
"style-loader": "^3.2.1",
"web-ext": "^6.4.0",
"webextension-polyfill": "^0.8.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}