-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 926 Bytes
/
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
{
"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.2.1",
"fastify-kysely": "^2.0.0",
"better-sqlite3": "^11.8.1",
"kysely": "^0.27.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.1",
"typescript": "^5.7.3"
}
}