-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
96 lines (96 loc) · 2.68 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": "five-server",
"version": "0.3.3",
"description": "Development Server with Live Reload Capability. (Maintained Fork of Live Server)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"live-server": "./lib/bin.js",
"five-server": "./lib/bin.js"
},
"keywords": [
"browser",
"development",
"tool",
"http",
"html",
"php",
"live",
"server",
"cli",
"preview",
"reload",
"refresh",
"live-server",
"live server"
],
"scripts": {
"depcheck": "npx depcheck",
"start": "npm run dev",
"dev": "npm run clean && npm-run-all --parallel dev:*",
"dev:tsc": "tsc --watch",
"dev:client": "webpack --config webpack.client.cjs --watch",
"build": "npm run extract && tsc && webpack --config webpack.client.cjs",
"clean": "rimraf lib",
"prune": "rimraf .cache coverage lib node_modules package-lock.json",
"format": "prettier --check src/**",
"format:write": "prettier --write src/**",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint --fix src --ext .ts,.tsx",
"extract": "extract version name src/const.ts",
"test": "jest --forceExit --silent",
"test:full": "npm ci && npm run clean && npm run build && npm run format:write && npm run lint:fix && npm run test",
"publish": "publish",
"push": "npm run publish",
"preReleaseHook": "clean build format:write lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yandeu/five-server.git"
},
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/yandeu/five-server/issues"
},
"homepage": "https://github.com/yandeu/five-server#readme",
"dependencies": {
"@yandeu/open-cjs": "^0.0.0",
"chokidar": "^3.5.1",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express6": "^0.1.2",
"html-validate": "^7.1.1",
"mime-types": "~2.1.24",
"node-html-parser": "~5.4.1",
"parseurl": "~1.3.3",
"selfsigned": "^2.0.0",
"ws": "^8.2.0"
},
"devDependencies": {
"@actions/exec": "^1.0.4",
"@types/node": "^18.11.17",
"@types/ws": "^8.2.0",
"@yandeu/eslint-config": "^0.0.3",
"@yandeu/extract": "0.0.3",
"@yandeu/prettier-config": "^0.0.3",
"eslint": "^8.2.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"publish-cli": "^1.7.0",
"puppeteer": "^19.4.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-loader": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.35.1",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}