-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "fastify-vite-typescript-boilerplate",
"version": "0.1.0",
"description": "Boilerplate for setting up @fastify/vite with Typescript",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "npm run build:server && vite build",
"build:server": "tsc",
"lint": "biome lint --apply .",
"start": "npm run build:server && node dist/server.js --dev",
"start:prod": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onlywei/fastify-vite-typescript-boilerplate.git"
},
"keywords": [
"fastify",
"vite",
"typescript"
],
"author": "Wei Wang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onlywei/fastify-vite-typescript-boilerplate/issues"
},
"homepage": "https://github.com/onlywei/fastify-vite-typescript-boilerplate#readme",
"dependencies": {
"@fastify/vite": "^6.0.7",
"fastify": "^4.28.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.10",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}