-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "vite-fastify-boilerplate",
"version": "0.0.6",
"description": "Fastify boilerplate with Vite & Vitest",
"main": "build/server.js",
"scripts": {
"dev": "vite",
"build": "vite build --outDir build --ssr src/server.ts",
"format": "prettier --config .prettierrc \"src/**/*.{js,json,ts,css,scss,vue,html,md}\" --write",
"start": "yarn build && node build/server.js",
"test": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage"
},
"keywords": [
"fastify",
"vite",
"vitest",
"boilerplate",
"typescript",
"HMR"
],
"author": "Emmanuel Salomon <[email protected]> (https://github.com/ManUtopiK)",
"license": "GPL-3.0-or-later",
"dependencies": {
"env-schema": "^6.0.0",
"fastify": "^5.0.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "2.1.2",
"@vitest/ui": "^2.1.2",
"c8": "^10.1.2",
"jsdom": "^25.0.1",
"vite": "^5.4.8",
"vite-plugin-node": "^3.1.0",
"vitest": "^2.1.2"
}
}