-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.78 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.78 KB
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
{
"name": "ts-node",
"version": "1.0.0",
"description": "In this lab, you will learn how to: - Set up a **Node.js project using TypeScript** with **CommonJS** module syntax. - Configure **TypeScript compiler (tsc)** properly. - Run your TypeScript code directly using **ts-node** or **nodemon**. - Create one working API route `POST /books` to add a book to a JSON file. - Test it manually using Postman or `curl`.",
"main": "index.js",
"dependencies": {
"accepts": "^2.0.0",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"anymatch": "^3.1.3",
"arg": "^4.1.3",
"balanced-match": "^1.0.2",
"binary-extensions": "^2.3.0",
"body-parser": "^2.2.0",
"brace-expansion": "^1.1.12",
"braces": "^3.0.3",
"bytes": "^3.1.2",
"call-bind-apply-helpers": "^1.0.2",
"call-bound": "^1.0.4",
"chokidar": "^3.6.0",
"concat-map": "^0.0.1",
"content-disposition": "^1.0.0",
"content-type": "^1.0.5",
"cookie": "^0.7.2",
"cookie-signature": "^1.2.2",
"create-require": "^1.1.1",
"debug": "^4.4.3",
"depd": "^2.0.0",
"diff": "^4.0.2",
"dunder-proto": "^1.0.1",
"ee-first": "^1.1.1",
"encodeurl": "^2.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^5.1.0",
"fill-range": "^7.1.1",
"finalhandler": "^2.1.0",
"forwarded": "^0.2.0",
"fresh": "^2.0.0",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.3.0",
"get-proto": "^1.0.1",
"glob-parent": "^5.1.2",
"gopd": "^1.2.0",
"has-flag": "^3.0.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"http-errors": "^2.0.0",
"iconv-lite": "^0.6.3",
"ignore-by-default": "^1.0.1",
"inherits": "^2.0.4",
"ipaddr.js": "^1.9.1",
"is-binary-path": "^2.1.0",
"is-extglob": "^2.1.1",
"is-glob": "^4.0.3",
"is-number": "^7.0.0",
"is-promise": "^4.0.0",
"make-error": "^1.3.6",
"math-intrinsics": "^1.1.0",
"media-typer": "^1.1.0",
"merge-descriptors": "^2.0.0",
"mime-db": "^1.54.0",
"mime-types": "^3.0.1",
"minimatch": "^3.1.2",
"ms": "^2.1.3",
"negotiator": "^1.0.0",
"normalize-path": "^3.0.0",
"object-inspect": "^1.13.4",
"on-finished": "^2.4.1",
"once": "^1.4.0",
"parseurl": "^1.3.3",
"path-to-regexp": "^8.3.0",
"picomatch": "^2.3.1",
"proxy-addr": "^2.0.7",
"pstree.remy": "^1.1.8",
"qs": "^6.14.0",
"range-parser": "^1.2.1",
"raw-body": "^3.0.1",
"readdirp": "^3.6.0",
"router": "^2.2.0",
"safe-buffer": "^5.2.1",
"safer-buffer": "^2.1.2",
"semver": "^7.7.3",
"send": "^1.2.0",
"serve-static": "^2.2.0",
"setprototypeof": "^1.2.0",
"side-channel": "^1.1.0",
"side-channel-list": "^1.0.0",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2",
"simple-update-notifier": "^2.0.0",
"statuses": "^2.0.2",
"supports-color": "^5.5.0",
"to-regex-range": "^5.0.1",
"toidentifier": "^1.0.1",
"touch": "^3.1.1",
"type-is": "^2.0.1",
"undefsafe": "^2.0.5",
"undici-types": "^7.16.0",
"unpipe": "^1.0.0",
"v8-compile-cache-lib": "^3.0.1",
"vary": "^1.1.2",
"wrappy": "^1.0.2",
"yn": "^3.1.1"
},
"scripts": {
"dev": "nodemon --watch src --exec \"node --loader ts-node/esm --experimental-specifier-resolution=node\" src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git@github.com-work:not-soo-techie/ts-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}