-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.66 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
{
"name": "aws-ecr-lambda-example",
"private": true,
"version": "1.0.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/claudiorodriguez/aws-ecr-lambda-example.git"
},
"author": "Claudio Rodriguez <cjrodr@yahoo.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf './dist'",
"build": "tsc && docker build -t lambdaexample .",
"start": "yarn build && docker run -p 9000:8080 lambdaexample",
"lint": "tsc --noEmit && eslint './**/*.{js,jsx,ts,tsx}'",
"test": "jest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"eslint": "^8.9.0",
"eslint-config-ts-mailonline": "^2.0.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.(ts|tsx)"
],
"coveragePathIgnorePatterns": [
"\\.d\\.ts$",
"/__tests__/"
],
"coverageReporters": [
"json-summary",
"json",
"html",
"text"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testRegex": "__tests__/.*\\.spec\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"/node_modules/.*"
]
},
"dependencies": {
"axios": "^0.26.0"
}
}