-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"name": "serverless-local",
"version": "0.1.12",
"description": "A serverless framework plugin for running your serverless stack locally.",
"main": "src/index.ts",
"scripts": {
"start": "ts-node dist/index.js",
"build": "tsc && cp -R ./src/runtime-apis/runtime-binaries dist/runtime-apis && cp package.json dist/ && cp README.md dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"build-runtime:dotnetcore31": "dotnet publish ./src/runtime-apis/runtime-src/dotnetcore3.1/dotnetcore3.1.csproj -c Release -o ./src/runtime-apis/runtime-binaries/dotnetcore3.1"
},
"keywords": ["serverless", "framework", "local", "apigateway", "sns", "serverless framework", "serverless-local", "dotnetcore"],
"author": "Alex Vance",
"license": "MIT",
"dependencies": {
"serverless": "^1.74.1",
"chalk": "^4.1.0",
"execa": "^4.0.3",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"uuid": "^8.3.0",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/xml": "^1.0.5",
"@types/express": "^4.17.6",
"@types/node-fetch": "^2.5.7",
"@types/serverless": "^1.72.4",
"@types/uuid": "^8.3.0"
}
}