-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "serverless-typescript-test",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "handler.js",
"scripts": {
"test": "jest ./get.test.ts",
"deploy": "serverless deploy function -f hello",
"offline:base": "serverless offline",
"offline:db": "serverless dynamodb start",
"install-dynamo": "node ./scripts/install-dynamo.js"
},
"dependencies": {
"@types/jest": "^26.0.15",
"dayjs": "^1.9.6",
"serverless-dynamodb-local": "^0.2.39",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/aws-lambda": "^8.10.17",
"@types/node": "^12.19.11",
"@types/serverless": "^1.72.5",
"aws-sdk": "^2.817.0",
"aws-sdk-mock": "^5.1.0",
"babel-jest": "^26.6.3",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"serverless-offline": "^6.8.0",
"serverless-s3-local": "^0.6.7",
"serverless-webpack": "^5.2.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.10.2",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-node-externals": "^1.7.2"
},
"resolutions": {
"serverless-dynamodb-local/dynamodb-localhost": "0.0.7"
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "babel-jest"
},
"automock": false,
"testTimeout": 15000
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
[
"@babel/preset-typescript"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/smt7174/jawsugdays2021.git"
},
"bugs": {
"url": "https://github.com/smt7174/jawsugdays2021/issues"
},
"homepage": "https://github.com/smt7174/jawsugdays2021#readme"
}