We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec61502 commit 161b254Copy full SHA for 161b254
package.json
@@ -0,0 +1,28 @@
1
+{
2
+ "name": "node-ts-postgres-demo",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "prestart": "tsup src/config --onSuccess \"node dist/database.js\"",
8
+ "start": "node dist/server.js",
9
+ "dev": "tsup src/server.ts --watch --onSuccess \"node dist/server.js\"",
10
+ "build": "tsup"
11
+ },
12
+ "keywords": [],
13
+ "author": "",
14
+ "license": "ISC",
15
+ "dependencies": {
16
+ "dotenv": "^16.4.5",
17
+ "envalid": "^8.0.0",
18
+ "express": "^4.19.2",
19
+ "pg": "^8.11.5"
20
21
+ "devDependencies": {
22
+ "@types/express": "^4.17.21",
23
+ "@types/node": "^20.12.7",
24
+ "@types/pg": "^8.11.5",
25
+ "tsup": "^8.0.2",
26
+ "typescript": "^5.4.5"
27
+ }
28
+}
0 commit comments