-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.29 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
{
"name": "abstractplay-backend-thumbnails",
"version": "1.0.0-beta",
"description": "node.js lambdas for the daily thumbnail run",
"type": "module",
"scripts": {
"clean": "rimraf dist .esbuild .serverless",
"test": "node --test test/lambdaInterop.test.mjs",
"build-ts": "tsc",
"build": "node bin/check-ci-deps.mjs && eslint && tsc",
"build:layers": "node scripts/build-layers.mjs",
"test:layers": "npm run build:layers && node scripts/smoke-layer-modules.mjs",
"deploy-dev": "serverless deploy",
"deploy-prod": "serverless --stage prod deploy",
"full-dev": "npm run clean && npm run build && serverless deploy",
"full-prod": "npm run build && serverless --stage prod deploy"
},
"author": "Aaron Dalton",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AbstractPlay/backend-thumbnails.git"
},
"bugs": {
"url": "https://github.com/AbstractPlay/backend-thumbnails/issues"
},
"homepage": "https://github.com/AbstractPlay/backend-thumbnails#readme",
"engines": {
"node": ">=24",
"npm": "11.6.2"
},
"packageManager": "npm@11.6.2",
"dependencies": {
"@abstractplay/gameslib": "1.0.0-ci-32783108998.0",
"@abstractplay/renderer": "1.0.0-ci-32782926153.0",
"@aws-sdk/client-dynamodb": "^3.321.1",
"@aws-sdk/client-s3": "^3.374.0",
"@aws-sdk/client-ses": "^3.321.1",
"@aws-sdk/client-sqs": "^3.946.0",
"@aws-sdk/lib-dynamodb": "^3.321.1",
"@sparticuz/chromium": "^143.0.0",
"aws-lambda": "^1.0.7",
"fflate": "^0.8.1",
"i18next": "^22.4.15",
"ion-js": "^5.2.0",
"nanoid": "3.3.11",
"puppeteer-core": "^24.33.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@aws-sdk/types": "^3.310.0",
"@types/aws-lambda": "^8.10.115",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.1",
"@types/web-push": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "^0.27.1",
"eslint": "^8.39.0",
"fs-extra": "^11.3.4",
"rimraf": "^6.1.2",
"serverless": "^3.40.0",
"serverless-esbuild": "^1.56.1",
"serverless-scriptable-plugin": "^1.3.1",
"typescript": "^5.0.4"
},
"overrides": {
"@abstractplay/renderer": "1.0.0-ci-32782926153.0",
"nanoid": "3.3.11"
}
}