-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "node-web-console",
"version": "1.0.0",
"description": "a simple web-based SSH, remote shell in your browser based on Node.js, inspired by web-console",
"main": "server/app.js",
"scripts": {
"client:dev": "parcel watch client/js/index.js -d static",
"server:dev": "cross-env NODE_ENV=development nodemon server/app.js",
"client:build": "cross-env NODE_ENV=production parcel build client/js/index.js -d static",
"prod": "npm run client:build && cross-env NODE_ENV=production pm2 start server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisCindy/node-web-console.git"
},
"keywords": [
"web",
"console",
"nodejs"
],
"author": "ChrisCindy",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChrisCindy/node-web-console/issues"
},
"homepage": "https://github.com/ChrisCindy/node-web-console#readme",
"dependencies": {
"jayson": "^2.0.6",
"jquery": "^3.3.1",
"jquery-mousewheel": "^3.1.13",
"jquery.terminal": "^1.15.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-connect": "^2.0.1",
"koa-mount": "^3.0.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-views": "^6.1.4",
"natural-compare-lite": "^1.4.0",
"normalize.css": "^8.0.0",
"pug": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"cross-env": "^5.1.5",
"eslint": "^5.14.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.4",
"parcel-bundler": "^1.8.1"
}
}