-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "pastebin-sls",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc",
"dev": "npm run build && nodemon dist/index.js",
"start": "node dist/index.js",
"test": "jest test"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.857.0",
"@aws-sdk/client-lambda": "^3.857.0",
"@aws-sdk/client-s3": "^3.857.0",
"@aws-sdk/lib-dynamodb": "^3.857.0",
"aws-sdk": "^2.1692.0",
"bcryptjs": "^3.0.2",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"minio": "^8.0.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.152",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.1.0",
"@types/supertest": "^6.0.3",
"jest": "^30.0.5",
"serverless": "^3.38.0",
"serverless-localstack": "^1.3.1",
"serverless-offline": "^14.4.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}