-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 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
{
"name": "auth-api",
"version": "1.1.3",
"description": "Production-grade authentication API with session governance, refresh rotation, Prisma/PostgreSQL persistence, Redis rate limiting, and contract-driven documentation.",
"main": "dist/src/server.js",
"type": "commonjs",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/src/server.js",
"test": "vitest run --config vitest.config.mjs",
"test:integration": "RUN_INTEGRATION_TESTS=1 vitest run --config vitest.config.mjs tests/integration/auth.e2e.test.ts",
"test:coverage": "vitest run --config vitest.config.mjs --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome check . --formatter-enabled=true --linter-enabled=false --assist-enabled=false",
"format:write": "biome format . --write",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:fast": "tsgo --project tsconfig.json",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy"
},
"keywords": [
"nodejs",
"express",
"typescript",
"prisma",
"postgresql",
"redis",
"jwt",
"auth-api",
"testing",
"portfolio-project"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0",
"pino": "^10.3.1",
"prisma": "^7.3.0",
"prom-client": "^15.1.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.4.0",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript/native-preview": "^7.0.0-dev.20260209.1",
"@vitest/coverage-v8": "^4.0.18",
"pino-pretty": "^13.1.3",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=20 <21"
}
}