2023-05-19 15:22:48 -03:00
|
|
|
{
|
2023-06-04 22:24:07 -03:00
|
|
|
"name": "wf-emulator",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "WF Emulator",
|
|
|
|
"main": "index.ts",
|
|
|
|
"scripts": {
|
2025-04-17 13:15:50 -07:00
|
|
|
"start": "node --enable-source-maps --import ./build/src/pathman.js build/src/index.js",
|
2024-01-06 16:26:58 +01:00
|
|
|
"dev": "ts-node-dev --openssl-legacy-provider -r tsconfig-paths/register src/index.ts ",
|
2025-04-06 10:18:50 -07:00
|
|
|
"build": "tsc --incremental --sourceMap && ncp static/webui build/static/webui",
|
2025-04-01 02:29:41 -07:00
|
|
|
"verify": "tsgo --noEmit",
|
2023-06-04 22:24:07 -03:00
|
|
|
"lint": "eslint --ext .ts .",
|
2025-04-09 15:25:19 -07:00
|
|
|
"lint:ci": "eslint --ext .ts --rule \"prettier/prettier: off\" .",
|
2024-05-06 15:19:42 +02:00
|
|
|
"lint:fix": "eslint --fix --ext .ts .",
|
2025-02-06 07:00:21 -08:00
|
|
|
"prettier": "prettier --write .",
|
|
|
|
"update-translations": "cd scripts && node update-translations.js"
|
2023-06-04 22:24:07 -03:00
|
|
|
},
|
|
|
|
"license": "GNU",
|
|
|
|
"dependencies": {
|
2025-03-09 07:41:24 -07:00
|
|
|
"@types/express": "^5",
|
|
|
|
"@types/morgan": "^1.9.9",
|
2025-03-09 07:47:32 -07:00
|
|
|
"crc-32": "^1.2.2",
|
2024-12-22 15:42:24 +01:00
|
|
|
"express": "^5",
|
2025-03-24 11:31:53 -07:00
|
|
|
"json-with-bigint": "^3.2.2",
|
2025-02-26 15:41:36 -08:00
|
|
|
"mongoose": "^8.11.0",
|
2025-03-09 07:41:24 -07:00
|
|
|
"morgan": "^1.10.0",
|
2025-03-30 06:20:53 -07:00
|
|
|
"ncp": "^2.0.0",
|
2025-04-10 12:54:43 -07:00
|
|
|
"typescript": "^5.5",
|
2025-04-23 11:35:57 -07:00
|
|
|
"warframe-public-export-plus": "^0.5.57",
|
2024-10-18 17:03:24 +02:00
|
|
|
"warframe-riven-info": "^0.1.2",
|
2024-12-22 00:51:51 +01:00
|
|
|
"winston": "^3.17.0",
|
2024-07-03 13:04:13 +02:00
|
|
|
"winston-daily-rotate-file": "^5.0.0"
|
2023-06-04 22:24:07 -03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-04-01 02:29:41 -07:00
|
|
|
"@rxliuli/tsgo": "^2025.3.31",
|
2025-03-29 15:20:54 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
|
|
"@typescript-eslint/parser": "^8.28.0",
|
|
|
|
"eslint": "^8",
|
|
|
|
"eslint-plugin-prettier": "^5.2.5",
|
|
|
|
"prettier": "^3.5.3",
|
2023-06-04 22:24:07 -03:00
|
|
|
"ts-node-dev": "^2.0.0",
|
2025-03-09 07:41:24 -07:00
|
|
|
"tsconfig-paths": "^4.2.0"
|
2023-06-04 22:24:07 -03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18.15.0",
|
|
|
|
"npm": ">=9.5.0"
|
|
|
|
}
|
2023-05-19 15:22:48 -03:00
|
|
|
}
|