-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
50
51
52
53
54
55
56
57
{
"name": "lambda-forge",
"version": "1.0.3-beta.13",
"description": "",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MikeMather/lambda-forge.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -r ./dist && tsc",
"lint": "eslint .",
"prepare": "husky",
"precommit": "lint-staged",
"docs:serve": "docsify serve docs",
"docs:build": "docsify build docs"
},
"lint-staged": {
"src/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "MikeMather",
"license": "ISC",
"types": "./dist/types/index.d.ts",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"aws-lambda": "^1.0.7",
"docsify-cli": "^4.4.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@launchtray/tsyringe-async": "^4.3.3",
"@types/aws-lambda": "^8.10.138",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
}
}