forked from fredericbarthelet/typebridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "typebridge",
"version": "0.7.0",
"description": "Typescript toolbox for AWS EventBridge",
"main": "dist/index.js",
"author": "Frédéric Barthelet",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -d",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix",
"watch": "tsc -w",
"type": "tsc --noEmit",
"test": "jest --runInBand"
},
"dependencies": {
"ajv": "^6.12.6",
"json-schema-to-ts": "1.5.0"
},
"devDependencies": {
"@middy/core": "^1.4.0",
"@middy/validator": "^1.5.0",
"@types/aws-lambda": "^8.10.64",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"aws-lambda-mock-context": "^3.2.1",
"aws-sdk": "^2.789.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"http-errors": "^1.8.0",
"jest": "^26.6.3",
"jest-aws-sdk-mock": "^1.0.2",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}