forked from TomDoesTech/fastify-prisma-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 789 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
{
"name": "fastify-prisma",
"version": "1.0.0",
"main": "index.js",
"author": "Tom Nagle",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --transpile-only --exit-child src/app.ts",
"test": "tap --node-arg=--require=ts-node/register"
},
"dependencies": {
"@faker-js/faker": "^6.0.0-beta.0",
"@prisma/client": "^3.10.0",
"fastify": "^3.27.2",
"fastify-jwt": "^4.1.3",
"fastify-swagger": "^4.15.0",
"fastify-zod": "^0.0.2",
"tap": "^16.0.0",
"ts-mock-imports": "^1.3.8",
"zod": "^3.12.0",
"zod-to-json-schema": "^3.11.3"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/tap": "^15.0.6",
"sinon": "^13.0.1",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}