34 lines
1 KiB
JSON
34 lines
1 KiB
JSON
{
|
|
"name": "tic-tac-toe",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "npm run build && node dist/run.js",
|
|
"build": "vite build",
|
|
"build:prod": "vite build --outDir=/dist --minify=true --sourcemap=false && mv /dist/run.js /dist/run.cjs",
|
|
"build:openapi": "VITE_ENTRYPOINT=src/openapi.ts vite build && mv dist/openapi.js dist/openapi.cjs && node dist/openapi.cjs >openapi.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"packageManager": "pnpm@10.24.0",
|
|
"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/websocket": "^11.2.0",
|
|
"fastify": "^5.6.2",
|
|
"fastify-plugin": "^5.1.0",
|
|
"socket.io": "^4.8.3",
|
|
"typebox": "^1.0.69"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.3",
|
|
"rollup-plugin-node-externals": "^8.1.2",
|
|
"vite": "^7.3.0",
|
|
"vite-tsconfig-paths": "^5.1.4"
|
|
}
|
|
}
|