forked from Tencent/nohost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 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
{
"name": "@nohost/server",
"version": "0.3.7",
"description": "Multi-user & multi-env web debugging proxy based on whistle",
"main": "index.js",
"bin": {
"nohost": "./bin/nohost.js",
"nohosts": "./bin/nohost.js",
"n2": "./bin/nohost.js"
},
"directories": {
"lib": "lib"
},
"port": 8080,
"scripts": {
"lint": "eslint *.js lib src bin",
"lintfix": "eslint --fix *.js lib src bin",
"dev": "rimraf public && webpack --config ./src/config/webpack.dev.js -w",
"dist": "rimraf public && webpack --config ./src/config/webpack.prod.js",
"start": "node bin/nohost run",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"registry": "https://registry.npmjs.org/@nohost/server",
"repository": {
"type": "git",
"url": "git+https://github.com/nohosts/nohost.git"
},
"keywords": [
"whistle",
"multi-users",
"nohost"
],
"author": "avwu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nohosts/nohost/issues"
},
"homepage": "https://github.com/nohosts/nohost#readme",
"devDependencies": {
"antd": "^3.25.3",
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-import": "^1.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clipboard": "^2.0.1",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-config-imweb": "^0.2.19",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "3.3.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"prop-types": "^15.5.10",
"qrcode": "^1.2.0",
"query-string": "^5.0.1",
"rc-tween-one": "^2.6.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"vuepress": "^1.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"basic-auth": "^2.0.1",
"colors": "^1.4.0",
"cookie": "^0.4.0",
"fs-extra": "^8.1.0",
"hagent": "^0.7.0",
"hparser": "^0.3.0",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash.get": "^4.4.2",
"lru-cache": "^5.1.1",
"parseurl": "^1.3.3",
"pfork": "^0.3.6",
"starting": "^6.2.0",
"whistle": "^2.4.11"
}
}