-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "drizzle-fastify-yoga",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"generate:migration": "pnpm drizzle-kit generate:sqlite",
"migrate": "tsx scripts/migrate.ts",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@envelop/core": "^5.0.0",
"@fastify/one-line-logger": "^1.3.0",
"@graphql-tools/schema": "^10.0.3",
"better-sqlite3": "^9.5.0",
"drizzle-orm": "^0.30.8",
"fastify": "^4.26.2",
"graphql": "^16.8.1",
"graphql-yoga": "^5.3.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.6.3",
"drizzle-kit": "^0.20.14",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"author": "Dinesh Pandiyan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flexdinesh/drizzle-fastify-yoga"
}
}