forked from Bitcoindefi/OpenAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "argentumonlineweb-api",
"version": "1.0.0",
"private": true,
"description": "Minimal auth/character API backed by PostgreSQL for Argentum Online Web",
"main": "dist/server.js",
"scripts": {
"clean": "rm -rf dist",
"apply-balance": "tsx src/scripts/applyBalanceToCharacters.ts",
"apply-balance:prod": "node dist/scripts/applyBalanceToCharacters.js",
"cancel-npc-sold-market-listings": "tsx src/scripts/cancelNpcSoldMarketListings.ts",
"cancel-npc-sold-market-listings:prod": "node dist/scripts/cancelNpcSoldMarketListings.js",
"diag:double-login": "tsx src/scripts/diagnoseDoubleLogin.ts",
"balance-snapshot": "tsx src/scripts/reportBalanceSnapshot.ts",
"export-frontend-npcs": "tsx src/scripts/exportFrontendNpcs.ts",
"export-frontend-npcs:frontend": "tsx src/scripts/exportFrontendNpcs.ts --output ../frontend/public/init/npcs.json",
"fix-missing-heads": "tsx src/scripts/fixCharactersMissingHeads.ts",
"fix-missing-heads:prod": "node dist/scripts/fixCharactersMissingHeads.js",
"import-game-data": "tsx src/scripts/importGameData.ts",
"import-game-data:prod": "node dist/scripts/importGameData.js npcs",
"remove-newbie-items": "tsx src/scripts/removeNewbieItemsFromHighLevelCharacters.ts",
"remove-newbie-items:prod": "node dist/scripts/removeNewbieItemsFromHighLevelCharacters.js",
"reset-spell-stats": "tsx src/scripts/resetSpellStats.ts",
"reset-spell-stats:prod": "node dist/scripts/resetSpellStats.js",
"build": "pnpm run clean && tsc && mkdir -p dist/jsons dist/mapas_source && cp src/jsons/*.json dist/jsons/ && cp -R src/mapas_source/. dist/mapas_source/",
"dev": "tsx watch src/server.ts",
"balance-csv": "tsx src/scripts/exportBalanceComparison.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:vaults": "vitest run src/tests/vaults.integration.test.ts",
"migrate": "node dist/migrate.js",
"start": "pnpm run migrate && node dist/server.js"
},
"dependencies": {
"@aws-sdk/client-sesv2": "^3.1048.0",
"bcryptjs": "^3.0.2",
"express": "^5.1.0",
"pg": "^8.16.3",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^25.8.0",
"@types/pg": "^8.15.5",
"tsx": "^4.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}