-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "26f-sutdio-fastify",
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "1.0.0",
"main": "server.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "node esbuild.mjs",
"dev": "tsx watch server.ts",
"start": "node esbuild.mjs && node build/server.js",
"format": "prettier --write config.ts server.ts src/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/cors": "^8.5.0",
"@fastify/sensible": "^5.5.0",
"chalk": "^5.3.0",
"fastify": "^4.26.2",
"fastify-graceful-shutdown": "^3.5.3",
"fastify-plugin": "^4.5.1",
"toml": "^3.0.0",
"ts-date": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"ajv": "^8.12.0",
"esbuild": "^0.19.12",
"esbuild-plugin-tsc": "^0.4.0",
"fastify-tsconfig": "^2.0.0",
"glob": "^10.3.12",
"prettier": "^3.2.5",
"tsx": "^3.14.0",
"typescript": "^5.4.5"
}
}