-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.16 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
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
{
"name": "nest-auth-example",
"version": "1.0.0",
"description": "Reference implementation for @bymax-one/nest-auth — demonstrates every library feature in a production-grade multi-tenant NestJS + Next.js application.",
"keywords": [
"nest-auth",
"nestjs",
"nextjs",
"authentication",
"authorization",
"multi-tenant",
"mfa",
"totp",
"oauth",
"google-oauth",
"jwt",
"rbac",
"prisma",
"redis",
"typescript",
"example",
"reference"
],
"license": "MIT",
"author": {
"name": "Bymax One",
"url": "https://bymax.one"
},
"homepage": "https://github.com/bymaxone/nest-auth-example#readme",
"repository": {
"type": "git",
"url": "https://github.com/bymaxone/nest-auth-example.git"
},
"bugs": {
"url": "https://github.com/bymaxone/nest-auth-example/issues"
},
"private": true,
"type": "module",
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=24",
"pnpm": ">=10.8"
},
"scripts": {
"dev": "pnpm -r --parallel --if-present run dev",
"build": "pnpm -r --if-present run build",
"typecheck": "pnpm -r --if-present run typecheck",
"lint": "eslint .",
"test": "pnpm -r --if-present run test",
"test:cov": "pnpm -r --if-present run test:cov",
"test:cov:api": "pnpm --filter @nest-auth-example/api run test:cov",
"test:cov:web": "pnpm --filter @nest-auth-example/web run test:cov",
"test:e2e": "pnpm -r --if-present run test:e2e",
"mutation": "pnpm -r --if-present run mutation",
"mutation:api": "pnpm --filter @nest-auth-example/api run mutation",
"mutation:web": "pnpm --filter @nest-auth-example/web run mutation",
"mutation:incremental": "pnpm -r --if-present run mutation:incremental",
"mutation:incremental:api": "pnpm --filter @nest-auth-example/api run mutation:incremental",
"mutation:incremental:web": "pnpm --filter @nest-auth-example/web run mutation:incremental",
"mutation:dry-run": "pnpm -r --if-present run mutation:dry-run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"infra:up": "docker compose up -d --wait",
"infra:down": "docker compose down",
"infra:nuke": "docker compose down -v",
"infra:logs": "docker compose logs -f",
"infra:test:up": "docker compose -f docker-compose.test.yml up -d --wait",
"infra:test:down": "docker compose -f docker-compose.test.yml down -v",
"audit:exports": "node scripts/audit-library-exports.mjs"
},
"pnpm": {
"overrides": {
"@hono/node-server": ">=1.19.13",
"js-yaml@3": "^3.15.1",
"js-yaml@4": "^4.3.1"
},
"onlyBuiltDependencies": []
},
"devDependencies": {
"@bymax-one/nest-auth": "^1.0.11",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-tailwindcss": "^3.18.3",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}