t00-multiuser/server/package.json

41 lines
974 B
JSON
Raw Normal View History

2024-04-18 23:18:49 +01:00
{
"name": "t00-mp",
"description": "",
"version": "1.0.0",
"main": "build/index.js",
"scripts": {
"updateCheck": "check-outdated",
"dev": "nodemon --watch './**/*.ts' index.ts",
"build": "npm-run-all build:*",
"build:build": "ncc build index.ts -o build",
"buildd:mangle": "ts-node ./tooling/mangle.ts",
"buildd:cleanup": "ts-node ./tooling/cleanup.ts"
2024-04-18 23:18:49 +01:00
},
"keywords": [],
"author": "tgpholly",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/formbody": "^7.4.0",
2024-04-22 16:05:42 +01:00
"@fastify/view": "^9.0.0",
2024-04-18 23:18:49 +01:00
"bufferstuff": "^1.5.1",
2024-04-22 16:05:42 +01:00
"ejs": "^3.1.10",
"fastify": "^4.26.2",
2024-04-22 02:01:14 +01:00
"hsconsole": "^1.0.2",
2024-04-21 15:35:47 +01:00
"mysql2": "^3.9.7",
2024-04-18 23:18:49 +01:00
"ws": "^8.16.0"
},
"devDependencies": {
2024-04-22 16:05:42 +01:00
"@types/ejs": "^3.1.5",
2024-04-18 23:18:49 +01:00
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"@vercel/ncc": "^0.38.1",
"check-outdated": "^2.12.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"terser": "^5.30.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}