-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 888 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 888 Bytes
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
{
"name": "http-server",
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "fastify start -p 4010 -a 0.0.0.0 custom-server/src/index.js",
"build": "tsp compile ./typescpec/main.tsp"
},
"devDependencies": {
"npm-check-updates": "^19.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"private": true,
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@openapitools/openapi-generator-cli": "^2.29.0",
"@stoplight/prism-cli": "^5.14.2",
"@typespec/compiler": "latest",
"@typespec/http": "latest",
"@typespec/openapi3": "latest",
"@typespec/rest": "latest",
"fastify": "^5.7.4",
"fastify-cli": "^7.4.1",
"fastify-plugin": "^5.1.0",
"lodash": "^4.17.23"
}
}