-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.8 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
{
"name": "auth-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec 'tsx --env-file=.env --import ./src/instrumentation.ts src/index.ts'",
"build": "tsc",
"start": "node --import ./dist/instrumentation.js dist/index.js",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.78.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.220.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.220.0",
"@opentelemetry/resources": "^2.9.0",
"@opentelemetry/sdk-metrics": "^2.9.0",
"@opentelemetry/sdk-node": "^0.220.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"@sendgrid/mail": "^8.1.4",
"better-auth": "1.6.23",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.6.0",
"helmet": "^8.3.0",
"ioredis": "^5.11.1",
"jose": "6.2.3",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^9.0.3",
"pg": "^8.22.0",
"rate-limit-redis": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.13.3",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.1",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^9.39.5",
"nodemon": "^3.1.14",
"supertest": "^7.2.2",
"tsx": "^4.23.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
}
}