-
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) · 945 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 945 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
33
34
35
36
37
38
39
40
41
42
{
"name": "starter-fastify-api",
"version": "0.1.0",
"description": "Starter Fastify API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"fastify",
"api",
"typescript",
"nodejs"
],
"author": "Merkur39",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/jwt": "^10.0.0",
"fastify": "^5.5.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^22.5.0",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}