-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "serverless-typescript",
"version": "1.0.0",
"description": "Sample CRUD user apis with typescript and Serverless framework",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vedsingh-fullstack/serverless-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vedsingh-fullstack/serverless-typescript/issues"
},
"homepage": "https://github.com/vedsingh-fullstack/serverless-typescript#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"jest": "^29.3.1",
"json-schema-to-ts": "^1.5.0",
"serverless-dynamodb-local": "^0.2.40",
"serverless-offline": "^11.6.0",
"serverless-plugin-typescript": "^2.1.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/uuid": "^9.0.0",
"aws-sdk": "^2.1267.0",
"uuid": "^9.0.0"
}
}