-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.16 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
{
"name": "ai-poc-serverless",
"version": "1.0.0",
"description": "<!-- title: 'AWS NodeJS Example' description: 'This template demonstrates how to deploy a simple NodeJS function running on AWS Lambda using the Serverless Framework.' layout: Doc framework: v4 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": "handler.js",
"scripts": {
"start:dev": "serverless offline start",
"deploy": "serverless deploy",
"format": "prettier --write \"constants/**/*.js\" \"functions/**/*.js\" \"handler.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/core": "^0.3.13",
"@langchain/google-vertexai": "^0.1.0",
"@langchain/openai": "^0.3.14",
"buffer": "^6.0.3",
"busboy": "^1.6.0",
"file-type": "^16.5.4",
"langchain": "^0.3.6",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"prettier": "^3.4.1",
"serverless-aws-documentation": "^1.1.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.8.0"
}
}