37 lines
968 B
JSON
37 lines
968 B
JSON
{
|
|
"type": "module",
|
|
"private": false,
|
|
"name": "user",
|
|
"version": "1.0.0",
|
|
"description": "This project was bootstrapped with Fastify-CLI.",
|
|
"main": "app.ts",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build && node dist/run.js",
|
|
"build": "vite build",
|
|
"build:prod": "vite build --outDir=/dist --minify=true --sourcemap=false",
|
|
"build:openapi": "VITE_ENTRYPOINT=src/openapi.ts vite build && node dist/openapi.cjs >openapi.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fastify/autoload": "^6.3.1",
|
|
"@fastify/formbody": "^8.0.2",
|
|
"@fastify/multipart": "^9.3.0",
|
|
"@fastify/sensible": "^6.0.4",
|
|
"@fastify/static": "^8.3.0",
|
|
"fastify": "^5.6.2",
|
|
"fastify-cli": "^7.4.1",
|
|
"fastify-plugin": "^5.1.0",
|
|
"typebox": "^1.0.64"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.3",
|
|
"rollup-plugin-node-externals": "^8.1.2",
|
|
"vite": "^7.3.0",
|
|
"vite-tsconfig-paths": "^5.1.4"
|
|
}
|
|
}
|