-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"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",
"check": "biome check --write",
"test": "vitest run",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "7.3.4",
"cors": "2.8.5",
"dotenv": "17.2.1",
"express": "5.1.0",
"express-rate-limit": "8.0.1",
"helmet": "8.1.0",
"http-status-codes": "2.3.0",
"pino": "9.9.0",
"pino-http": "10.5.0",
"swagger-ui-express": "5.0.1",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/cors": "2.8.19",
"@types/express": "5.0.3",
"@types/supertest": "6.0.3",
"@types/swagger-ui-express": "4.1.8",
"@vitest/coverage-v8": "3.2.4",
"pino-pretty": "13.1.1",
"supertest": "7.1.4",
"tsup": "8.5.0",
"tsx": "4.20.4",
"typescript": "5.9.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"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.14.0"
}