-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1018 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "aws-node-typescript-rest-api-with-dynamodb",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node .build/src/app.local.js",
"transpile": "tsc",
"test": "jest",
"watch": "tsc -w",
"lint": "tslint '*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"jest": "^26.5.2",
"serverless-apigw-binary": "^0.4.4",
"serverless-plugin-typescript": "^1.1.9",
"serverless-prune-plugin": "^1.4.3",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"sharp": "^0.26.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}