generated from mikecabana/express-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "fastify-ts-starter",
"version": "1.2.0",
"description": "fastify app starter in typescript",
"main": "app.ts",
"type": "module",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"dev": "tsx watch ./src/app.ts",
"start": "npm run build && node dist/app.js",
"lint": "eslint . --ext .ts"
},
"keywords": [
"node",
"fastify",
"typescript",
"starter",
"eslint"
],
"repository": {
"git": "https://github.com/mikecabana/fastify-ts-starter.git"
},
"author": "Michael Cabana <mikeycabana@gmail.com>",
"contributors": [
{
"name": "Michael Cabana",
"email": "mikeycabana@gmail.com",
"url": "https://github.com/mikecabana"
}
],
"license": "MIT",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/csrf-protection": "^6.4.1",
"@fastify/helmet": "^11.1.1",
"@fastify/session": "^10.9.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/websocket": "^10.0.1",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"jsonwebtoken": "^9.0.2"
}
}