-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 2.17 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
{
"name": "webpack-react-web-extension-template",
"description": "Template to quickly bootstrap your react web extension",
"version": "1.2.0",
"repository": "git@github.com:OlegWock/webpack-react-web-extension-template.git",
"author": "OlegWock <olegwock@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack build --config webpack.config.ts --env mode=development",
"production": "webpack build --config webpack.config.ts --env mode=production",
"watch": "webpack watch --config webpack.config.ts",
"prepare": "husky install",
"lint": "eslint .",
"pre-commit": "run-p lint"
},
"browserslist": ">0.25% and Chrome > 80",
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@types/node": "^18.0.4",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@typescript-eslint/typescript-estree": "^6.2.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^7.0.0",
"inject-react-anywhere": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.3",
"to-string-loader": "^1.2.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"walk-sync": "^3.0.0",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"eslint": "^8.46.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}