-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "aws-textract-pipeline",
"version": "0.1.0",
"homepage": "https://github.com/remnantkevin/aws-textract-pipeline",
"repository": "https://github.com/remnantkevin/aws-textract-pipeline",
"author": {
"name": "Kevin Elliott",
"url": "https://github.com/remnantkevin"
},
"private": "true",
"type": "module",
"scripts": {
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format:check": "prettier --check '**/*.ts",
"format:fix": "prettier --write '**/*.ts'",
"build": "tsc",
"build:noEmit": "tsc --noEmit",
"watch": "tsc -w",
"test": "TZ=UTC vitest run",
"cdk": "cdk"
},
"dependencies": {
"aws-cdk-lib": "2.31.1",
"constructs": "10.1.43",
"deepmerge-ts": "4.2.1",
"neverthrow": "4.3.1",
"simple-runtypes": "7.1.0",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@aws-sdk/types": "3.110.0",
"@types/aws-lambda": "8.10.101",
"@types/node": "16.11.38",
"@types/source-map-support": "0.5.4",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"aws-cdk": "2.31.1",
"aws-sdk-client-mock": "2.0.0-beta.1",
"esbuild": "0.14.48",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-unused-imports": "2.0.0",
"prettier": "2.6.2",
"ts-node": "10.8.2",
"typescript": "4.7.4",
"vitest": "0.18"
},
"bin": {
"aws-textract-pipeline": "bin/aws-textract-pipeline.js"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}