mirror of
https://github.com/laochan-eacnet/backend.git
synced 2026-09-22 22:28:11 +03:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "@laochan/ea3",
|
|
"version": "0.0.0",
|
|
"description": "Yet another e-amusement server emulator.",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">= 20.9 < 21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "~29.5",
|
|
"@types/koa": "^2.13.12",
|
|
"@types/koa__cors": "^5.0.0",
|
|
"@types/koa__router": "^12.0.4",
|
|
"@types/koa-bodyparser": "^4.3.12",
|
|
"@types/lodash": "^4.14.202",
|
|
"@types/node": "~20",
|
|
"@types/pug": "^2.0.10",
|
|
"@typescript-eslint/eslint-plugin": "~6.15",
|
|
"@typescript-eslint/parser": "~6.15",
|
|
"eslint": "~8.56",
|
|
"eslint-config-prettier": "~9.1",
|
|
"eslint-plugin-jest": "~27.6",
|
|
"jest": "~29.7",
|
|
"prettier": "~3.1",
|
|
"rimraf": "~5.0",
|
|
"ts-api-utils": "~1.0",
|
|
"ts-jest": "~29.1",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "~5.3"
|
|
},
|
|
"scripts": {
|
|
"start": "node build/main.js",
|
|
"watch": "tsx watch src/main.ts",
|
|
"clean": "rimraf coverage build tmp",
|
|
"prebuild": "npm run lint",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:watch": "tsc -w -p tsconfig.json",
|
|
"build:release": "npm run clean && tsc -p tsconfig.release.json",
|
|
"lint": "eslint . --ext .ts --ext .mts",
|
|
"lint:fix": "eslint . --ext .ts --ext .mts --fix",
|
|
"test": "jest --coverage",
|
|
"prettier": "prettier --config .prettierrc --write .",
|
|
"test:watch": "jest --watch",
|
|
"xmltojson": "tsx src/tool/xml-to-json.ts"
|
|
},
|
|
"author": "GEEKiDoS",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@cordisjs/logger": "^0.1.3",
|
|
"@kamyu/kbinxml": "^2.0.2",
|
|
"@koa/cors": "^5.0.0",
|
|
"@koa/router": "^12.0.1",
|
|
"arc4": "^2.1.4",
|
|
"dedent-js": "^1.0.1",
|
|
"dotenv": "^16.4.5",
|
|
"fast-xml-parser": "^4.3.2",
|
|
"highwayhash": "^3.1.1",
|
|
"koa": "^2.15.0",
|
|
"koa-bodyparser": "^4.4.1",
|
|
"lodash": "^4.17.21",
|
|
"mongodb": "^6.4.0",
|
|
"pug": "^3.0.2",
|
|
"reflect-metadata": "^0.2.1",
|
|
"tslib": "~2.6",
|
|
"tsyringe": "^4.8.0"
|
|
},
|
|
"volta": {
|
|
"node": "20.10.0"
|
|
}
|
|
}
|