-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
103 lines (103 loc) · 2.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@nestjs-cognito/workspace",
"version": "0.0.0",
"private": true,
"description": "Nest - Cognito Monorepo",
"author": "Loik Fekkai",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b -v packages",
"clean": "tsc -b --clean packages",
"clean:deps": "pnpm -r exec rm -rf node_modules && pnpm install",
"coverage": "jest --coverage && coveralls < coverage/lcov.info",
"format": "prettier packages/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'packages/**/*.ts' --fix",
"test": "jest",
"test:e2e": "pnpm -r run test:e2e",
"test:e2e:auth": "pnpm --filter @nestjs-cognito/auth run test:e2e",
"test:e2e:core": "pnpm --filter @nestjs-cognito/core run test:e2e",
"test:e2e:graphql": "pnpm --filter @nestjs-cognito/graphql run test:e2e",
"cw": "commitizard -s conventional",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@apollo/server": "4.11.3",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "19.7.1",
"@commitlint/config-angular": "19.7.1",
"@golevelup/ts-jest": "0.6.2",
"@nestjs/config": "4.0.0",
"@nestjs/core": "11.0.9",
"@nestjs/platform-express": "11.0.9",
"@nestjs/testing": "11.0.9",
"@types/graphql": "14.5.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@types/node-fetch": "3.0.3",
"tslib": "^2.6.2",
"@types/normalize-path": "3.0.2",
"@types/ws": "8.5.14",
"@types/express": "5.0.0",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"coveralls": "3.1.1",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"graphql": "16.10.0",
"jest": "29.7.0",
"lerna": "8.1.9",
"lerna-changelog": "2.2.0",
"lint-staged": "15.4.3",
"pactum": "3.7.6",
"prettier": "3.5.0",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"whoami": "^0.0.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"packages/*/lib/**/*.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "packages/tsconfig.spec.json"
}
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"preset": "ts-jest"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Lokicoule/nestjs-cognito.git"
}
}