-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "fastify-test",
"description": "Fastify Start with typescript, Prisma and Vitest",
"version": "1.0.0",
"main": "dist/src/server.js",
"scripts": {
"test": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"start": "bun run build && node dist/src/server.js",
"typecheck": "tsc --noEmit --pretty",
"lint": "eslint .",
"format": "prettier -w .",
"build": "tsc",
"dev": "ts-node-dev --log-error --files ./src/server.ts"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "@pierreberger",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/helmet": "^11.1.1",
"@fastify/sensible": "^5.5.0",
"@prisma/client": "^5.8.1",
"fastify": "^4.0.0",
"fastify-cli": "^6.0.1",
"fastify-plugin": "^4.0.0",
"fastify-type-provider-zod": "^1.1.9",
"pino": "^8.17.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.4.4",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"fastify-tsconfig": "^2.0.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.4",
"prisma": "^5.8.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"vitest": "^1.2.2",
"vitest-mock-extended": "^1.3.1"
}
}