forked from butlerx/wetty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
195 lines (195 loc) · 5.58 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"name": "wetty",
"version": "2.0.0",
"description": "WeTTY = Web + TTY. Terminal access in browser over http/https",
"homepage": "https://github.com/butlerx/wetty",
"license": "MIT",
"type": "module",
"main": "./build/main.js",
"module": "./build/server.js",
"files": [
"build/"
],
"scripts": {
"build": "snowpack build",
"dev": "NODE_ENV=development concurrently --kill-others --success first \"snowpack dev\" \"nodemon .\"",
"prepublishOnly": "snowpack build",
"lint": "eslint src/**/*.ts",
"start": "NODE_ENV=production node .",
"contributor": "all-contributors",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register src/**/*.spec.ts",
"clean": "rm -rf build yarn-error.log"
},
"repository": {
"type": "git",
"url": "git://github.com/butlerx/wetty.git"
},
"author": {
"name": "Cian Butler",
"email": "[email protected]",
"url": "cianbutler.ie"
},
"bugs": {
"url": "https://github.com/butlerx/wetty/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{json,scss,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=10.22"
},
"nodemonConfig": {
"ignore": [
"*.scss",
"src/*",
"*.json"
]
},
"snowpack": {
"installOptions": {
"sourceMap": true,
"installTypes": true
},
"mount": {
"src/client": "/client",
"src/assets": "/assets"
},
"exclude": [
"src/server/**/*.ts",
"src/client/**/*.spec.ts",
"src/*.ts"
],
"plugins": [
[
"@snowpack/plugin-run-script",
{
"cmd": "tsc -p tsconfig.browser.json --noEmit",
"watch": "$1 --watch"
}
],
[
"@snowpack/plugin-run-script",
{
"cmd": "sass src/assets/scss:build/assets/css --load-path=node_modules -s compressed --no-source-map",
"watch": "$1 --watch"
}
],
[
"@snowpack/plugin-run-script",
{
"cmd": "tsc -p tsconfig.node.json",
"watch": "$1 --watch"
}
]
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"file-type": "^12.3.0",
"fs-extra": "^9.0.1",
"helmet": "^4.1.0",
"json5": "^2.1.3",
"lodash": "^4.17.20",
"node-pty": "^0.9.0",
"sass": "^1.26.10",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"toastify-js": "^1.9.1",
"winston": "^3.3.3",
"xterm": "^4.8.1",
"xterm-addon-fit": "^0.4.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.1",
"@types/helmet": "^0.0.48",
"@types/jsdom": "^12.2.4",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.7.37",
"@types/node": "^14.6.3",
"@types/serve-favicon": "^2.5.0",
"@types/sinon": "^7.5.1",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@types/winston": "^2.4.4",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^4.3.0",
"all-contributors-cli": "^6.17.2",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"git-authors-cli": "^1.0.28",
"husky": "^4.2.5",
"jsdom": "^15.2.1",
"lint-staged": "^10.2.13",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"sinon": "^7.5.0",
"snowpack": "^2.10.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"contributors": [
"Krishna Srinivas <[email protected]>",
"Boyan Rabchev <[email protected]>",
"Antonio Calatrava <[email protected]>",
"Strubbl <[email protected]>",
"Oleg Kurapov <[email protected]>",
"Anthony Jund <[email protected]>",
"Luca Milanesio <[email protected]>",
"nosemeocurrenada <[email protected]>",
"Henri <[email protected]>",
"Imuli <[email protected]>",
"Koushik M.L.N <[email protected]>",
"cbutler <[email protected]>",
"mirtouf <[email protected]>",
"Denis Kramer <[email protected]>",
"Jarrett Gilliam <[email protected]>",
"Mihir Kumar <[email protected]>",
"Nathan LeClaire <[email protected]>",
"Andreas Kloeckner <[email protected]>",
"Ben Letchford <[email protected]>",
"Bertrand Roussel <[email protected]>",
"Farhan Khan <[email protected]>",
"Felix Bartels <[email protected]>",
"Felix Pojtinger <[email protected]>",
"James Turnbull <[email protected]>",
"Josh Samuelson <[email protected]>",
"Jurre Vriesen <[email protected]>",
"Kasper Holbek Jensen <[email protected]>",
"Krzysztof Suszyński <[email protected]>",
"Matthew Piercey <[email protected]>",
"Neale Pickett <[email protected]>",
"Robert <[email protected]>",
"Soura Dutta <[email protected]>",
"Tri Nguyen <[email protected]>",
"harryleesan <[email protected]>"
]
}