-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.96 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
59
60
{
"name": "@klarna/nest-lambda-microservice",
"version": "0.5.0",
"description": "NestJS based microservice for writing applications that run on AWS Lambda",
"repository": {
"type": "git",
"url": "git@github.com:klarna-incubator/nest-lambda-microservice.git"
},
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "yarn build:clean && yarn build:ts",
"build:clean": "rm -rf dist",
"build:ts": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint '**/*.ts' --fix && prettier . --write --list-different --ignore-unknown && tsc -p tsconfig.json --noEmit",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest --selectProjects unit --passWithNoTests --runInBand --detectOpenHandles",
"test:integration": "jest --selectProjects integration --passWithNoTests --runInBand --detectOpenHandles",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@nestjs/microservices": "10.4.4",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"uuid": "10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@jest/globals": "29.7.0",
"@nestjs/testing": "10.4.1",
"@tsconfig/node20": "20.1.4",
"@types/aws-lambda": "8.10.145",
"@types/node": "20.16.2",
"@types/uuid": "10.0.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.8.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.2",
"typescript-eslint": "^8.8.0"
},
"volta": {
"node": "20.17.0"
},
"license": "Apache-2.0",
"packageManager": "yarn@4.4.1"
}