-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 3.33 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
87
{
"name": "amazon-killer",
"version": "3.0.0",
"description": "",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js src",
"lint:fix": "eslint --ext .js src --fix",
"prettier": "prettier \"src/**/*.{js}\"",
"prettier:fix": "npm run prettier -- --write",
"fix": "run-s lint:fix prettier:fix",
"start": "run-s build:chrome dev:chrome",
"dev:chrome": "cross-env HMR=true NODE_ENV=development TARGET_BROWSER=chrome webpack --watch --mode=development --hide-modules",
"dev:firefox": "cross-env HMR=true NODE_ENV=development TARGET_BROWSER=firefox webpack --watch --mode=development --hide-modules",
"dev:opera": "cross-env HMR=true NODE_ENV=development TARGET_BROWSER=opera webpack --watch --mode=development --hide-modules",
"build": "run-s build:chrome build:firefox build:opera",
"build:chrome": "cross-env NODE_ENV=production TARGET_BROWSER=chrome webpack --mode=production --hide-modules",
"build:firefox": "cross-env NODE_ENV=production TARGET_BROWSER=firefox webpack --mode=production --hide-modules",
"build:opera": "cross-env NODE_ENV=production TARGET_BROWSER=opera webpack --mode=production --hide-modules",
"build:report": "webpack-bundle-analyzer --port 4200 dist/chrome/stats.json",
"watch:nohmr": "npm run build -- --watch",
"release": "run-s build test build:zip release:chrome release:firefox",
"release:firefox": "web-ext-submit --source-dir dist/firefox",
"release:chrome": "webstore upload --source=dist/chrome --auto-publish"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions"
],
"dependencies": {
"chrome-webstore-upload-cli": "^1.2.0",
"content-scripts-register-polyfill": "^1.0.5",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"minimist": "^1.2.5",
"node-png": "^0.4.3",
"path": "^0.12.7",
"query-string": "^6.13.4",
"tiny-emitter": "^2.1.0",
"web-ext-submit": "^5.1.0",
"webextension-polyfill": "^0.6",
"wext-manifest": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.12.0",
"@babel/runtime-corejs3": "^7.11.2",
"archiver": "^5.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.1.1",
"core-js": "^3.6.5",
"cross-env": "^7.0",
"css-loader": "^4.3",
"ejs": "^3.1.5",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.1.0",
"html-loader": "^1.3.1",
"mini-css-extract-plugin": "^0.11",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"pixelmatch": "^5.2.1",
"prettier": "^2.1.2",
"puppeteer": "^5.3.1",
"raw-loader": "^4.0",
"sass-loader": "^10.0.2",
"web-ext-types": "^3.2",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.4",
"write-webpack-plugin": "^1.1.0"
}
}