forked from matschik/fastify-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 761 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 761 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
{
"name": "fastify-typescript-starter",
"version": "4.1.0",
"description": "Fastify TypeScript starter repository",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput --pretty",
"dev": "cross-env NODE_ENV=development nodemon",
"format": "prettier --write \"src/**/*.ts\"",
"build": "rimraf dist && tsc",
"start": "node dist/index.js"
},
"author": "Matschik <mathieu.schimmerling@protonmail.com>",
"license": "MIT",
"dependencies": {
"fastify": "^4.25.2"
},
"devDependencies": {
"@types/node": "^20.11.10",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^2.0.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}