-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from LasCC/dev
Version 0.5.0
- Loading branch information
Showing
49 changed files
with
2,553 additions
and
2,359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ yarn-error.log | |
.vscode | ||
.idea | ||
.github | ||
pnpm-lock.yaml | ||
pnpm-lock.yaml | ||
bundle*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,87 @@ | ||
{ | ||
"name": "hack-tools", | ||
"version": "1.0.0", | ||
"description": "The all in one Red team browser extension for web pentesters", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "webpack --watch", | ||
"build": "webpack --mode production && rm -f ./dist/*.map", | ||
"watch": "webpack --watch", | ||
"zip_moz": "zip -r bundle_moz.zip dist/*", | ||
"zip_chrome": "zip -r bundle_chrome.zip dist/", | ||
"zip_all": "yarn zip_moz && yarn zip_chrome", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "Ludovic COULON & Riadh BOUCHAHOUA", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/cli": "^7.16.0", | ||
"@babel/core": "^7.16.0", | ||
"@babel/helper-call-delegate": "^7.12.13", | ||
"@babel/plugin-proposal-class-properties": "^7.16.0", | ||
"@babel/preset-env": "^7.16.4", | ||
"@babel/preset-react": "^7.16.0", | ||
"@babel/preset-typescript": "^7.15.0", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.2", | ||
"@types/antd": "^1.0.0", | ||
"@types/crypto-js": "^4.0.2", | ||
"@types/pretty": "^2.0.0", | ||
"@types/react-query": "^1.2.9", | ||
"@types/react-syntax-highlighter": "^13.5.2", | ||
"@types/use-persisted-state": "^0.3.0", | ||
"babel-loader": "^8.2.3", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"copy-webpack-plugin": "^10.0.0", | ||
"css-loader": "^6.5.1", | ||
"file-loader": "^6.2.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"react-hot-loader": "^4.13.0", | ||
"react-refresh": "^0.11.0", | ||
"style-loader": "^3.3.1", | ||
"typescript": "^4.4.3", | ||
"webpack": "^5.64.1", | ||
"webpack-cli": "^4.9.1", | ||
"webpack-dev-server": "^4.5.0" | ||
}, | ||
"browserslist": [ ">0.2%", "not dead", "not op_mini all" ], | ||
"dependencies": { | ||
"@ant-design/icons": "4.7.0", | ||
"@hot-loader/react-dom": "^17.0.1", | ||
"@types/chrome": "^0.0.164", | ||
"@types/jest": "^27.0.3", | ||
"@types/node": "^16.11.9", | ||
"@types/react": "^17.0.27", | ||
"@types/react-dom": "^17.0.9", | ||
"antd": "4.16.13", | ||
"antd-mask-input": "0.1.15", | ||
"axios": "^0.24.0", | ||
"crypto-js": "^4.0.0", | ||
"escape-quotes": "^1.0.2", | ||
"less": "^4.1.2", | ||
"less-loader": "^10.2.0", | ||
"pretty": "^2.0.0", | ||
"rc-queue-anim": "^2.0.0", | ||
"react": "latest", | ||
"react-chrome-extension-router": "^1.3.1", | ||
"react-clipboard.js": "2.0.16", | ||
"react-dom": "latest", | ||
"react-query": "^3.33.1", | ||
"react-refresh-typescript": "^2.0.2", | ||
"react-syntax-highlighter": "^15.4.5", | ||
"sm3": "^1.0.3", | ||
"ts-loader": "^9.2.6", | ||
"use-persisted-state": "^0.3.3" | ||
} | ||
} | ||
"name": "hack-tools", | ||
"version": "1.0.0", | ||
"description": "The all in one Red team browser extension for web pentesters", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "webpack --watch", | ||
"build": "webpack --mode production && rm -f ./dist/*.map", | ||
"watch": "webpack --watch", | ||
"zip_chrome": "rm -f './dist/*.map' && zip -r bundle_chrome.zip dist/", | ||
"zip_moz": " rm -f './dist/*.map' && sed -i 's/\"manifest_version\": 3/\"manifest_version\": 2/g' ./dist/manifest.json && sed -i 's/\"action\":/\"browser_action\":/g' ./dist/manifest.json & zip -r bundle_moz.zip dist/*", | ||
"zip_all": "yarn zip_chrome && yarn zip_moz", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "Ludovic COULON & Riadh BOUCHAHOUA", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/cli": "^7.21.0", | ||
"@babel/core": "^7.21.0", | ||
"@babel/helper-call-delegate": "^7.12.13", | ||
"@babel/plugin-proposal-class-properties": "^7.18.6", | ||
"@babel/preset-env": "^7.20.2", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-typescript": "^7.21.0", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", | ||
"@types/crypto-js": "^4.1.1", | ||
"@types/pretty": "^2.0.1", | ||
"@types/react-syntax-highlighter": "^15.5.6", | ||
"@types/use-persisted-state": "^0.3.1", | ||
"babel-loader": "^9.1.2", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"copy-webpack-plugin": "^11.0.0", | ||
"css-loader": "^6.7.3", | ||
"file-loader": "^6.2.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"react-hot-loader": "^4.13.1", | ||
"react-refresh": "^0.14.0", | ||
"style-loader": "^3.3.1", | ||
"typescript": "^4.9.5", | ||
"webpack": "^5.76.1", | ||
"webpack-cli": "^5.0.1", | ||
"webpack-dev-server": "^4.11.1" | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"dependencies": { | ||
"@ant-design/compatible": "^5.1.1", | ||
"@ant-design/cssinjs": "^1.6.1", | ||
"@ant-design/icons": "4.8.0", | ||
"@ant-design/pro-card": "^2.3.0", | ||
"@ant-design/pro-layout": "^7.10.0", | ||
"@hot-loader/react-dom": "^17.0.2", | ||
"@types/chrome": "^0.0.206", | ||
"@types/jest": "^29.4.0", | ||
"@types/node": "^18.15.0", | ||
"@types/react": "^18.0.28", | ||
"@types/react-dom": "^18.0.11", | ||
"@uiw/react-md-editor": "^3.20.5", | ||
"antd": "5.1.0", | ||
"antd-mask-input": "2.0.7", | ||
"axios": "^1.3.4", | ||
"crypto-js": "^4.1.1", | ||
"darkreader": "^4.9.58", | ||
"escape-quotes": "^1.0.2", | ||
"less": "^4.1.3", | ||
"less-loader": "^11.1.0", | ||
"mermaid": "^9.4.3", | ||
"pretty": "^2.0.0", | ||
"rc-queue-anim": "^2.0.0", | ||
"react": "^18.2.0", | ||
"react-chrome-extension-router": "^1.4.0", | ||
"react-clipboard.js": "2.0.16", | ||
"react-color": "^2.19.3", | ||
"react-dom": "^18.2.0", | ||
"react-highlight-words": "^0.18.0", | ||
"react-query": "^3.39.3", | ||
"react-refresh-typescript": "^2.0.8", | ||
"react-syntax-highlighter": "^15.5.0", | ||
"sm3": "^1.0.3", | ||
"ts-loader": "^9.4.2", | ||
"use-persisted-state": "^0.3.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.