forked from shimpeiws/spike-ts-serverless-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "spike-ts-serverless-framework",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "handler.js",
"scripts": {
"test": "jest"
},
"dependencies": {
"aws-sdk": "^2.409.0",
"axios": "^0.18.0",
"serverless-websockets-plugin": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.23",
"@types/aws-lambda-mock-context": "^1.0.3",
"@types/aws-sdk": "^2.7.0",
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.11",
"@types/node": "^8.0.57",
"@types/uuid": "^3.4.4",
"aws-lambda-mock-context": "^3.2.1",
"jest": "^24.7.0",
"serverless-dynamodb-local": "^0.2.36",
"serverless-offline": "^4.6.0",
"serverless-webpack": "^5.1.1",
"source-map-support": "^0.5.6",
"ts-jest": "^24.0.1",
"ts-loader": "^4.2.0",
"typescript": "^2.9.2",
"webpack": "^4.5.0"
},
"resolutions": {
"serverless-dynamodb-local/dynamodb-localhost": "0.0.7"
},
"resolutionsComment": {
"serverless-dynamodb-local/dynamodb-localhost": "https: //github.com/99xt/serverless-dynamodb-local/issues/195#issuecomment-451867662"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts?|jsx?|tsx?)$",
"modulePathIgnorePatterns": [
"/__tests__/helpers/*"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}