-
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) · 798 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 798 Bytes
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-typescript-starter",
"version": "0.1.0",
"description": "A TypeScript starter for Serverless Framework",
"main": "handler.js",
"scripts": {
"test": "serverless-bundle test"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnomalyInnovations/serverless-typescript-starter.git"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/node": "^7.18.10",
"@types/aws-lambda": "^8.10.64",
"@types/jest": "^26.0.14",
"serverless-bundle": "^5.3.0",
"serverless-dotenv-plugin": "^3.0.0",
"serverless-offline": "^6.8.0"
},
"dependencies": {
"ajv": "^8.11.0",
"axios": "^0.27.2",
"commander": "^9.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}