-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 926 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
{
"name": "fastify-kysely-example",
"version": "1.0.0",
"description": "A simple example for fastify with fastify-kysely plugin",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alenap93/fastify-kysely-example.git"
},
"keywords": [
"fastify",
"kysely",
"fastify-kysely",
"plugin"
],
"author": "Alessio Napolitano",
"license": "MIT",
"bugs": {
"url": "https://github.com/alenap93/fastify-kysely-example/issues"
},
"homepage": "https://github.com/alenap93/fastify-kysely-example#readme",
"dependencies": {
"fastify": "^5.8.4",
"fastify-kysely": "^2.1.0",
"better-sqlite3": "^12.8.0",
"kysely": "^0.28.15"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"typescript": "^6.0.3"
}
}