-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"name": "aws-nodejs-typescript",
"version": "1.0.0",
"description": "Serverless webpack example using Typescript",
"main": "handler.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit --coverage **/*.test.ts"
},
"dependencies": {
"aws-sdk": "^2.1119.0",
"axios": "^0.26.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.95",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"acorn": "^8.7.0",
"jest": "^27.5.1",
"serverless-plugin-typescript": "^2.1.2",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.6.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT"
}