-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fastify-api-boilerplate-jwt",
"version": "1.0.0",
"description": "An API Boilerplate to create a ready-to-use REST API in seconds with Fastify + Kysely and JWT Auth",
"author": "Tony133",
"license": "MIT",
"private": true,
"directories": {
"test": "test"
},
"scripts": {
"dev:watch": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"tsx watch --env-file=.env src/server.ts\"",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"start": "npm run build:ts && node dist/server.js",
"test": "c8 tsx --env-file=.env --test test/**/*.ts",
"test:coverage": "c8 --reporter=html --reporter=text tsx --env-file=.env --test --test-concurrency=1 test/**/*.ts",
"prepare": "husky"
},
"keywords": [
"fastify",
"api",
"boilerplate",
"jwt",
"auth"
],
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/basic-auth": "^6.2.0",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@fastify/type-provider-typebox": "^6.1.0",
"@fastify/under-pressure": "^9.0.3",
"argon2": "^0.44.0",
"close-with-grace": "^2.4.0",
"env-schema": "^7.0.0",
"fastify": "^5.8.5",
"fastify-plugin": "^5.1.0",
"kysely": "^0.29.2",
"nodemailer": "^8.0.10",
"pg": "^8.21.0",
"typebox": "^1.1.39"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/node": "^25.9.1",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.18.0",
"c8": "^11.0.0",
"concurrently": "^9.2.1",
"fastify-tsconfig": "^3.0.0",
"husky": "^9.1.7",
"pino-pretty": "^13.1.3",
"tsx": "^4.22.3",
"typescript": "~6.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}