-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "hotweby",
"version": "1.0.11",
"description": "Automatic multiway hot-reloading webserver",
"type": "module",
"main": "dist/index.js",
"bin": {
"hotweby": "./dist/index.js"
},
"scripts": {
"start": "node --enable-source-maps dist/index.js -p 48080 -d test",
"build": "tsc",
"exec": "tsc && node --enable-source-maps dist/index.js -p 48080 -d test",
"dev": "nodemon -w ./src --ext *.ts -x \"tsc && node --enable-source-maps dist/index.js -p 48080 -d test\""
},
"keywords": [
"cli",
"commandline",
"reloader",
"html",
"web",
"hotreload",
"hotserve",
"hot",
"livereload",
"liveserve",
"live",
"autoreload",
"autoserve",
"auto",
"automation",
"website",
"webserver"
],
"author": {
"name": "Majo Richter",
"alias": "NobleMajo",
"email": "majo@coreunit.net",
"url": "https://github.com/NobleMajo"
},
"homepage": "https://github.com/NobleMajo/hotweby",
"bugs": {
"url": "https://github.com/NobleMajo/hotweby/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:NobleMajo/hotweby.git"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"nodemon": "^3.1.0",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.4.5"
},
"dependencies": {
"commander": "^12.1.0",
"express": "^4.19.2",
"ws": "^8.17.0"
}
}