-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.29 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.29 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
77
78
79
80
81
82
{
"name": "express-typescript-template",
"version": "1.0.0",
"description": "A template for building a REST API using Express and TypeScript",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:bun": "bun --hot src/index.ts",
"build": "node build.config.mjs",
"start": "cross-env NODE_ENV=production node dist/index.cjs",
"clean": "rimraf dist",
"db:push": "drizzle-kit push",
"db:push:prod": "cross-env NODE_ENV=production drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"sideEffects": [
"./src/helpers/openapi/zod-extend.ts"
],
"keywords": [
"express",
"typescript",
"drizzle",
"postgres",
"express starter"
],
"author": {
"name": "Jesse Ajioh",
"url": "https://gihub.com/ajiohjesse"
},
"license": "MIT",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.3",
"better-sse": "^0.14.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.39.3",
"envalid": "^8.0.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"morgan": "^1.10.0",
"pg": "^8.16.0",
"rate-limiter-flexible": "^5.0.5",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"zod": "^3.25.56"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^22.15.30",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^3.2.2",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.6",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"supertest": "^7.1.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.2"
}
}