-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.19 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
{
"name": "ssh-on-web",
"version": "1.0.0",
"description": "ssh on web.",
"main": "src/server/index.js",
"repository": "https://github.com/wenliu2/ssh-on-web",
"scripts": {
"start": "node compiled/server/index.js",
"build": "yarn build-client && yarn build-server",
"build-client": "webpack --mode production",
"build-server": "babel src/server --out-dir compiled/server --copy-files",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "yarn build-server && nodemon --inspect compiled/server/index.js",
"compile-server": "babel --watch src/server --out-dir compiled/server --copy-files",
"dev": "concurrently \"yarn compile-server\" \"yarn server\" \"yarn client\"",
"debug-server": "concurrently \"yarn compile-server\" \"node --inspect-brk=9229 compiled/server/index.js\"",
"debug": "concurrently \"yarn debug-server\" \"yarn client\""
},
"author": "Wen Liu, YunHan Tang",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.5.5",
"ajv": "^6.10.2",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"install": "^0.13.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.1",
"nodemon": "^1.19.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^1.4.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.7",
"vuetify-loader": "^1.3.0",
"webpack": "^4.38.0",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.3",
"convict": "^5.1.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"fs-extra": "^8.1.0",
"hterm-umdjs": "^1.4.1",
"js-sha512": "^0.8.0",
"jsonwebtoken": "^8.3.0",
"local-storage": "^2.0.0",
"lodash": "^4.17.19",
"log4js": "^4.5.1",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"node-pty": "^0.8.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prom-client": "^11.5.3",
"response-time": "^2.3.2",
"simple-encryptor": "^3.0.0",
"tmp": "^0.1.0",
"tmp-promise": "^2.0.2",
"uuid": "^3.3.2",
"vue": "^2.6.7",
"vuedraggable": "^2.20.0",
"vuetify": "1.5.16",
"websocket": "^1.0.28"
}
}