-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.93 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.93 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "allproxy",
"version": "3.57.10",
"description": "AllProxy: MITM HTTP Debugging Tool.",
"keywords": [
"proxy",
"debug",
"mitm",
"fiddler",
"charles",
"http",
"https",
"sql",
"grpc",
"tcp"
],
"homepage": "https://github.com/davechri/allproxy",
"bugs": {
"url": "https://github.com/davechri/allproxy/issues",
"email": "davechri58@gmail.com"
},
"main": "build/main.js",
"bin": {
"allproxy": "bin/allproxy",
"allproxy_win.bat": "bin/allproxy_win.bat"
},
"scripts": {
"install": "npm run install-client",
"install-client": "cd ./client && yarpm install",
"startdev": "NODE_ENV=development nodemon --config nodemon.json app.ts && tsc --force --project ./tsconfig.json",
"build": "npm run build-server && npm run build-client",
"build-server": "npm run clean && tsc --project ./tsconfig.json",
"build-client": "npm run clean-client && cd ./client && npm run build",
"clean": "rimraf ./build",
"clean-client": "rimraf ./client/build",
"start": "node ./headless.js",
"headless": "node ./headless.js",
"test": "cd ./client && npm run test",
"help": "if [ ! -d ./build ]; then npm run build; fi; node ./build/app.js --help; exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/allproxy/allproxy.git"
},
"author": "Dave Christenson",
"license": "MIT",
"private": false,
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@httptoolkit/browser-launcher": "^2.0.1",
"@vscode/ripgrep": "^1.15.9",
"async": "^3.2.4",
"bufferutil": "^4.0.3",
"decompress-response": "^3.3.0",
"fetch-to-curl": "^0.6.0",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"lookpath": "^1.2.2",
"mkdirp": "^1.0.4",
"mockttp": "^3.2.1",
"net": "^1.0.2",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.1",
"node-gsettings-wrapper": "^0.5.0",
"node-jq": "^4.3.0",
"nodemon": "^2.0.18",
"open": "^8.4.0",
"pako": "^2.1.0",
"path": "^0.12.7",
"protobufjs": "^6.11.2",
"socket.io": "^4.0.1",
"sql-formatter": "^2.3.3",
"tls": "^0.0.1",
"url": "^0.11.0",
"utf-8-validate": "^5.0.4",
"util": "^0.12.4",
"yarpm": "^1.1.1"
},
"devDependencies": {
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.182",
"@types/node": "^14.14.35",
"@types/rimraf": "^3.0.2",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.36",
"@types/sql-formatter": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}