-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "sweet-server",
"version": "2.2.3",
"main": "index.js",
"type": "module",
"author": "Tobiloba Adebisi <[email protected]> (https://tobiloba.me/portfolio)",
"repository": {
"type": "git",
"url": "https://github.com/Adebisi1234/sserver.git"
},
"bugs": {
"url": "https://github.com/Adebisi1234/sserver/issues"
},
"homepage": "https://github.com/Adebisi1234/sserver",
"scripts": {
"test": "node ./dist/index.js"
},
"bin": {
"sserver": "./dist/index.js"
},
"keywords": [
"server",
"hmr",
"webserver",
"websocket",
"local-development",
"hmr-support"
],
"license": "MIT",
"description": "A simple static web server. Supports HMR, Made to be used mostly locally",
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"compression": "^1.7.4",
"conf": "^13.0.1",
"esbuild": "^0.24.0",
"express": "^4.21.1",
"node-html-parser": "^6.1.13",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/ws": "^8.5.12"
}
}