-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 4.05 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "abstractplay-backend",
"version": "1.0.0-beta",
"description": "node.js lambda with DynamoDB",
"type": "module",
"scripts": {
"build:lambda-bundles": "node scripts/build-lambda-test-bundles.mjs",
"pretest": "npm run build:lambda-bundles",
"test": "npm run typecheck && vitest run && node --test test/lambdaInit.test.mjs test/scripts/locale-prune.test.mjs test/scripts/check-weblate-branch.test.mjs",
"test:watch": "vitest",
"test:scripts": "node --test test/scripts/*.test.mjs",
"typecheck": "tsc --noEmit",
"build:layers": "node scripts/build-layers.mjs",
"test:layers": "npm run build:layers && node scripts/smoke-layer-modules.mjs",
"lint": "eslint && npm run typecheck",
"build": "npm run lint",
"deploy-dev": "serverless deploy",
"deploy-prod": "serverless --stage prod deploy",
"full-dev": "npm run build && serverless deploy",
"full-prod": "npm run build && serverless --stage prod deploy",
"extract": "i18next 'api/**/*.ts' 'utils/**/*.ts'",
"translate": "node bin/translate.mjs locales/en/apback.json",
"prune-locales": "node bin/locale-prune.mjs locales/en/apback.json",
"check-weblate-branch": "node bin/check-weblate-branch.mjs",
"merge-weblate-branch": "node bin/merge-weblate-branch.mjs",
"dump-dashboard": "tsx bin/dump-dashboard.mjs",
"import-bgg-wishlist": "tsx bin/import-bgg-wishlist.mjs",
"import-discord-feedback": "tsx bin/import-discord-feedback.mjs",
"report-bgg-wishlist-users": "tsx bin/report-bgg-wishlist-users.mjs",
"report-discord-feedback-users": "tsx bin/report-discord-feedback-users.mjs",
"feedback-archive": "tsx bin/feedback-archive.mjs",
"feedback-attachment-cleanup": "tsx bin/feedback-attachment-cleanup.mjs",
"backfill-wishlist-bgg-images": "tsx bin/backfill-wishlist-bgg-images.mjs",
"backfill-blank-user-names": "tsx bin/backfill-blank-user-names.mjs",
"sync-deps": "ap-install-deps --stage dev",
"sync-deps:prod": "ap-install-deps --stage prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbstractPlay/node-backend.git"
},
"author": "Paul van Wamelen",
"license": "MIT",
"bugs": {
"url": "https://github.com/AbstractPlay/node-backend/issues"
},
"homepage": "https://github.com/AbstractPlay/node-backend#readme",
"engines": {
"node": ">=24",
"npm": "11.6.2"
},
"packageManager": "npm@11.6.2",
"dependencies": {
"@abstractplay/gameslib": "1.0.0-ci-33652219693.0",
"@abstractplay/recranks": "latest",
"@abstractplay/renderer": "1.0.0-ci-33584630705.0",
"@aws-sdk/client-apigatewaymanagementapi": "^3.957.0",
"@aws-sdk/client-cognito-identity-provider": "^3.1065.0",
"@aws-sdk/client-dynamodb": "3.1090.0",
"@aws-sdk/client-s3": "^3.374.0",
"@aws-sdk/client-ses": "^3.321.1",
"@aws-sdk/client-sqs": "^3.490.0",
"@aws-sdk/lib-dynamodb": "3.1090.0",
"@aws-sdk/s3-request-presigner": "^3.441.0",
"@sunknudsen/totp": "^1.1.0",
"abstractplay-backend": "file:",
"aws-jwt-verify": "^5.1.1",
"fast-xml-parser": "^4.5.7",
"fflate": "^0.8.1",
"i18next": "^22.4.15",
"ion-js": "^5.2.0",
"lodash": "^4.17.21",
"web-push": "^3.6.3"
},
"devDependencies": {
"@abstractplay/ap-deps-tools": "^1.1.1",
"@aws-sdk/types": "^3.310.0",
"@google/genai": "^2.13.0",
"@types/aws-lambda": "^8.10.115",
"@types/node": "^24",
"@types/uuid": "^9.0.1",
"@types/web-push": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"aws-amplify": "6.20.0",
"eslint": "^8.39.0",
"fs-extra": "^11.3.4",
"i": "^0.3.7",
"i18next-parser": "^7.7.0",
"serverless-esbuild": "^1.57.0",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-scriptable-plugin": "^1.3.1",
"tsx": "^4.8.1",
"typescript": "^5.0.4",
"vitest": "^3.2.4"
},
"overrides": {
"splaytree": "3.1.2",
"@aws-sdk/lib-dynamodb": {
"@aws-sdk/client-dynamodb": "$@aws-sdk/client-dynamodb"
},
"@abstractplay/renderer": "1.0.0-ci-33584630705.0"
}
}