-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --runInBand",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint {src,test}/**/*.ts --fix",
"prepare": "husky install",
"test:coverage": "jest --coverage"
},
"author": "joaomarcusjesus@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.4",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"aws-sdk-mock": "^5.8.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-folders": "^1.0.4",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^7.0.0",
"jest": "^29.6.4",
"lint-staged": "^11.2.6",
"prettier": "3.0.2",
"serverless-offline": "^12.0.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.398.0",
"aws-lambda": "^1.0.7",
"dotenv": "^8.2.0",
"uuid": "^9.0.0"
},
"lint-staged": {
"src/**/*": [
"npm run lint --fix"
]
}
}