-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 KB
/
package.json
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
{
"name": "typescript-express-postgres-redis-starter",
"version": "1.0.0",
"description": "This is opinionated project template for backend in 2024. I use it with my CLI to generate boilerplate.",
"main": "index.js",
"engines": {
"node": ">=18"
},
"private": true,
"scripts": {
"lint": "eslint",
"dev": "tsc-watch --onSuccess \" nodemon ./dist/main.js\"",
"inspect-db": "kysely-codegen --dialect postgres --out-file \"src/database/generated.types.ts\" ",
"build": "tsc"
},
"keywords": [],
"author": "Hrishikesh Pethe",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.4",
"@types/pg": "^8.10.9",
"@types/swagger-ui-express": "4.1.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"kysely-codegen": "^0.11.0",
"nodemon": "3.0.2",
"prettier": "3.1.1",
"tsc-watch": "6.0.4",
"typescript": "5.3.3"
},
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.3.1",
"express": "4.18.2",
"kysely": "0.26.3",
"morgan": "1.10.0",
"pg": "8.11.3",
"redis": "4.6.11",
"reflect-metadata": "0.2.1",
"swagger-ui-express": "5.0.0",
"typedi": "0.10.0",
"winston": "3.11.0",
"zod": "3.22.4"
}
}