-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.86 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.14",
"description": "An Express boilerplate backend",
"author": "Edwin Hernandez",
"repository": "edwinhern/express-typescript-2024",
"license": "MIT",
"main": "index.ts",
"private": true,
"scripts": {
"build": "tsc && tsup",
"start:dev": "node --import=tsx --watch src/index.ts",
"start:prod": "node dist/index.js",
"lint": "biome lint --fix",
"format": "biome format --write",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"check": "pnpm lint && pnpm format && pnpm build && pnpm test"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "7.3.4",
"@aws-sdk/client-s3": "^3.839.0",
"@aws-sdk/s3-request-presigner": "^3.839.0",
"@google-cloud/storage": "^7.16.0",
"cors": "2.8.5",
"dotenv": "16.5.0",
"express": "5.1.0",
"express-rate-limit": "7.5.0",
"fluent-ffmpeg": "^2.1.3",
"googleapis": "^150.0.1",
"helmet": "8.1.0",
"http-status-codes": "2.3.0",
"pino": "9.7.0",
"pino-http": "10.5.0",
"swagger-ui-express": "5.0.1",
"uuidv4": "^6.2.13",
"vimeo": "^2.3.1",
"youtube-dl-exec": "^3.0.22",
"ytdl-core": "^4.11.5",
"zod": "3.25.67"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cors": "2.8.19",
"@types/express": "5.0.3",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/supertest": "6.0.3",
"@types/swagger-ui-express": "4.1.8",
"@types/vimeo": "^2.1.8",
"@vitest/coverage-v8": "3.2.3",
"pino-pretty": "13.0.0",
"supertest": "7.1.1",
"tsup": "8.5.0",
"tsx": "4.20.3",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "dist",
"format": [
"esm",
"cjs"
],
"target": "es2020",
"sourcemap": true,
"clean": true,
"dts": true,
"splitting": false,
"skipNodeModulesBundle": true
},
"packageManager": "pnpm@10.12.1"
}