forked from LasCC/HackTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.2 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": "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"
}
}