forked from chris-mosley/AmazonBrandFilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "amazon-brand-filter",
"description": "amazon-brand-filter",
"version": "0.1.1",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.237",
"@types/web": "^0.0.130",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.3",
"web-ext": "^7.6.2",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write \"src/**/*.ts\""
],
"tests/**/*.ts": [
"prettier --write \"tests/**/*.ts\""
]
},
"scripts": {
"package": "web-ext build",
"prepare": "husky install",
"lint": "yarn eslint src/**/*.ts",
"build-gecko": "rm -rf dist && webpack --mode development --config webpack.gecko.config.js",
"build-chromium": "rm -rf dist && webpack --mode development --config webpack.chromium.config.js",
"watch-gecko": "rm -rf dist && webpack --mode development --config webpack.gecko.config.js --watch"
}
}