-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "node-typescript-fastify",
"version": "1.0.4",
"description": "It is a boilerplate of node, typeScript and fastify",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndresH11/Node-TypeScript-Fastify.git"
},
"keywords": [
"Node",
"TypeScript",
"Fastify",
"Boilerplate",
"server"
],
"author": "Andrés Hernández <andresfelipe200110@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndresH11/Node-TypeScript-Fastify/issues"
},
"homepage": "https://github.com/AndresH11/Node-TypeScript-Fastify#readme",
"devDependencies": {
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.0.3",
"prettier-eslint": "^16.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"fastify": "^4.25.2"
}
}