t00-multiuser/server/package.json

43 lines
1.0 KiB
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": {
2024-09-23 23:54:40 +01:00
"@fastify/cookie": "^10.0.1",
"@fastify/formbody": "^8.0.1",
2024-09-28 01:31:46 +01:00
"@fastify/static": "^8.0.1",
2024-09-23 23:54:40 +01:00
"@fastify/view": "^10.0.1",
2024-04-18 23:18:49 +01:00
"bufferstuff": "^1.5.1",
2024-04-22 16:05:42 +01:00
"ejs": "^3.1.10",
2024-09-20 00:02:46 +01:00
"fastify": "^5.0.0",
2024-04-22 02:01:14 +01:00
"hsconsole": "^1.0.2",
2024-09-20 00:02:46 +01:00
"mysql2": "^3.11.3",
2024-07-03 23:49:05 +01:00
"simple-prom": "^1.0.1",
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-09-23 23:54:40 +01:00
"@types/node": "^22.6.0",
2024-09-20 00:02:46 +01:00
"@types/ws": "^8.5.12",
2024-09-23 23:54:40 +01:00
"@vercel/ncc": "^0.38.2",
2024-04-18 23:18:49 +01:00
"check-outdated": "^2.12.0",
2024-09-23 23:54:40 +01:00
"nodemon": "^3.1.7",
2024-04-18 23:18:49 +01:00
"npm-run-all": "^4.1.5",
2024-09-20 00:02:46 +01:00
"terser": "^5.33.0",
2024-04-18 23:18:49 +01:00
"ts-node": "^10.9.2",
2024-09-20 00:02:46 +01:00
"typescript": "^5.6.2"
2024-04-18 23:18:49 +01:00
}
}