forked from heysarver/auth-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"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/auto-instrumentations-node": "^0.67.3",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.209.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.209.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-node": "^0.209.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@sendgrid/mail": "^8.1.4",
"@types/jsonwebtoken": "^9.0.10",
"better-auth": "^1.3.26",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.2.1",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"rate-limit-redis": "^4.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/ioredis": "^5.0.0",
"@types/node": "^24.10.4",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.1",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.4",
"vitest": "^4.0.16"
}
}