-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 853 Bytes
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
{
"name": "expense-tracker-ultimate",
"version": "1.0.0",
"private": true,
"description": "Expense Tracker Ultimate - static frontend with a TypeScript Node/Express + PostgreSQL backend",
"scripts": {
"dev": "nodemon --watch backend/src --ext ts --exec ts-node backend/src/server.ts",
"build:backend": "tsc -p backend/tsconfig.json",
"start": "node dist/backend/server.js"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.12.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.16.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.0"
}
}