forked from alibaba/anyproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "anyproxy",
"version": "4.1.3",
"description": "A fully configurable HTTP/HTTPS proxy in Node.js",
"main": "proxy.js",
"bin": {
"anyproxy-ca": "bin/anyproxy-ca",
"anyproxy": "bin/anyproxy"
},
"dependencies": {
"async": "~0.9.0",
"async-task-mgr": ">=1.1.0",
"body-parser": "^1.13.1",
"brotli": "^1.3.2",
"classnames": "^2.2.5",
"clipboard-js": "^0.3.3",
"co": "^4.6.0",
"colorful": "^2.1.0",
"commander": "~2.11.0",
"component-emitter": "^1.2.1",
"compression": "^1.4.4",
"es6-promise": "^3.3.1",
"express": "^4.8.5",
"fast-json-stringify": "^0.17.0",
"iconv-lite": "^0.4.6",
"inquirer": "^5.2.0",
"ip": "^0.3.2",
"juicer": "^0.6.6-stable",
"mime-types": "2.1.11",
"moment": "^2.15.1",
"nedb": "^1.8.0",
"node-easy-cert": "^1.0.0",
"pug": "^2.0.0-beta6",
"qrcode-npm": "0.0.3",
"request": "^2.74.0",
"stream-throttle": "^0.1.3",
"svg-inline-react": "^1.0.2",
"thunkify": "^2.1.2",
"whatwg-fetch": "^1.0.0",
"ws": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"antd": "^2.5.0",
"autoprefixer": "^6.4.1",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^6.2.5",
"babel-plugin-import": "^1.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"css-loader": "^0.23.1",
"eslint": ">=4.18.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.9.0",
"jest": "^24.9.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-simhash": "^0.1.0",
"nodeunit": "^0.9.1",
"phantom": "^4.0.0",
"postcss-loader": "^0.13.0",
"pre-commit": "^1.2.2",
"react": "^15.3.1",
"react-addons-perf": "^15.4.0",
"react-dom": "^15.3.1",
"react-json-tree": "^0.10.0",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"redux-saga": "^0.11.1",
"stream-equal": "0.1.8",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"tunnel": "^0.0.6",
"url-loader": "^0.5.7",
"urllib": "^2.34.2",
"webpack": "^3.10.0",
"worker-loader": "^0.7.1"
},
"scripts": {
"prepublish": "npm run buildweb",
"test": "npx jest",
"lint": "eslint .",
"testserver": "node test/server/startServer.js",
"buildweb": "NODE_ENV=production webpack --config web/webpack.config.js --colors",
"webserver": "NODE_ENV=test webpack --config web/webpack.config.js --colors --watch",
"doc:serve": "node build_scripts/prebuild-doc.js && gitbook serve ./docs-src ./docs --log debug",
"doc:build": "./build_scripts/build-doc-site.sh"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/alibaba/anyproxy"
},
"author": "[email protected]",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
}
}