-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 888 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 888 Bytes
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
{
"name": "documentdb-lambda-connection",
"version": "1.0.0",
"description": "Lambda connection to Documentdb",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.build.json && cp -R ./certificate ./dist/",
"watch": "tsc -w",
"test": "jest",
"lint:fix": "eslint --fix .",
"lint": "eslint ."
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"aws-cdk-lib": "^2.20.0",
"constructs": "^10.0.122",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}