generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
78 lines (78 loc) · 2.69 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
{
"name": "revoke-cash-browser-extension",
"version": "0.6.2",
"description": "The Revoke.cash browser extension helps you stay safe from crypto allowance scams.",
"main": "index.js",
"scripts": {
"dev:chrome": "cross-env TARGET_BROWSER=chrome webpack --config webpack/webpack.dev.js --watch",
"dev:firefox": "cross-env TARGET_BROWSER=firefox webpack --config webpack/webpack.dev.js --watch",
"build:chrome": "cross-env TARGET_BROWSER=chrome webpack --config webpack/webpack.prod.js",
"build:firefox": "cross-env TARGET_BROWSER=firefox webpack --config webpack/webpack.prod.js",
"zip:chrome": "web-ext build -s dist/chrome -a dist -n chrome.zip -o",
"zip:firefox": "web-ext build -s dist/firefox -a dist -n firefox.zip -o",
"build": "run-p 'build:*'",
"zip": "run-p 'zip:*'",
"clean": "rimraf dist",
"lint": "prettier --write .",
"postinstall": "husky install",
"translations:update": "localazy upload && localazy download && yarn lint"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.2.3",
"@heroicons/react": "^2.1.3",
"@metamask/post-message-stream": "^8.1.0",
"@revoke.cash/chains": "^54.0.0",
"eth-rpc-errors": "^4.0.3",
"object-hash": "^3.0.0",
"react": "^18.3.1",
"react-async-hook": "^4.0.0",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"react-slide-routes": "^3.0.3",
"react-switch": "^6.1.0",
"stream-browserify": "^3.0.0",
"tailwind-merge": "^2.3.0",
"use-intl": "^3.14.1",
"viem": "^2.13.7",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@localazy/cli": "^1.7.10",
"@types/chrome": "^0.0.268",
"@types/object-hash": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/readable-stream": "^4.0.14",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.19",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.1",
"prettier-plugin-organize-imports": "^3.2.4",
"process": "^0.11.10",
"rimraf": "^5.0.7",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.4",
"ts-loader": "^9.5.1",
"tsx": "^4.15.1",
"typescript": "^5.4.5",
"web-ext": "^8.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"wext-manifest-loader": "^2.4.2",
"wext-manifest-webpack-plugin": "^1.4.1"
},
"lint-staged": {
"*": "prettier -u --write"
}
}