1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| {
| "name": "web-development-examples",
| "version": "1.0.0",
| "description": "Web Development Examples",
| "main": "index.js",
| "scripts": {
| "preinstall": "git config --local core.hooksPath hooks",
| "serve": "http-server --port 8001"
| },
| "keywords": [],
| "author": "D+H Software GmbH",
| "license": "ISC",
| "devDependencies": {
| "http-server": "14.1.1"
| },
| "dependencies": {
| "copyfiles": "^2.4.1",
| "express": "^4.18.2",
| "node-fetch": "^3.3.1"
| }
| }
|
|