-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 KB
/
package.json
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
{
"name": "dino-image-server",
"version": "1.0.0",
"description": "<!-- title: 'AWS NodeJS Example' description: 'This template demonstrates how to deploy a NodeJS function running on AWS Lambda using the traditional Serverless Framework.' layout: Doc framework: v3 platform: AWS language: nodeJS priority: 1 authorLink: 'https://github.com/serverless' authorName: 'Serverless, inc.' authorAvatar: 'https://avatars1.githubusercontent.com/u/13742415?s=200&v=4' -->",
"main": "module.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node functions/fileUpload.js",
"dev": "nodemon functions/fileUpload.js"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"author": "Adam White",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.1",
"@as-integrations/aws-lambda": "^3.0.0",
"@aws-sdk/client-dynamodb": "^3.385.0",
"@aws-sdk/client-s3": "^3.385.0",
"@aws-sdk/lib-dynamodb": "^3.382.0",
"apollo-server-core": "^3.12.0",
"apollo-server-express": "^3.12.0",
"aws-sdk": "^2.1427.0",
"aws-serverless-express": "^3.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"file-type": "^19.0.0",
"graphql": "^16.3.0",
"graphql-http": "^1.21.0",
"jimp": "^0.22.10",
"jsonwebtoken": "^9.0.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@types/node": "^20.4.8",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"serverless-offline": "^12.0.4",
"typescript": "^5.1.6"
}
}