-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.34 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
{
"name": "codeguide-starter-expressjs",
"version": "1.0.0",
"description": "A production-ready Express.js starter kit with TypeScript, Drizzle ORM, Better Auth, and Docker",
"main": "dist/app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"db:dev": "./scripts/db-dev.sh",
"db:dev:stop": "./scripts/db-dev-stop.sh",
"db:info": "./scripts/db-info.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"docs": "npm run dev && echo '📖 API Documentation: http://localhost:3000/api-docs (development only)'",
"docs:serve": "echo '💡 Start the development server (npm run dev) to access API documentation at http://localhost:3000/api-docs - Available in development mode only'"
},
"keywords": [
"express",
"typescript",
"drizzle-orm",
"better-auth",
"docker",
"starter-kit",
"api",
"nodejs"
],
"author": "CodeGuide",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"better-auth": "^1.3.29",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.7",
"express": "^4.18.2",
"express-jsdoc-swagger": "^1.8.0",
"express-oas-validator": "^3.0.1",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"pg": "^8.16.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.4",
"@types/pg": "^8.15.5",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"drizzle-kit": "^0.31.5",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^4.20.6",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}