-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "flashlink-service",
"version": "1.0.0",
"description": "Production-ready URL shortener backend based on a distributed systems design.",
"main": "dist/server.js",
"type": "commonjs",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:once": "tsx src/server.ts",
"worker:dev": "tsx watch src/worker.ts",
"worker:once": "tsx src/worker.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"url-shortener",
"backend",
"typescript",
"fastify",
"redis",
"postgresql",
"system-design"
],
"author": "Marcos Astudillo",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@prisma/client": "^6.19.2",
"bullmq": "^5.70.4",
"dotenv": "^17.3.1",
"fastify": "^5.8.2",
"ioredis": "^5.10.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"pino-pretty": "^13.1.3",
"prisma": "^6.19.2",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}