-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.1 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
{
"name": "finx",
"version": "1.0.0",
"description": "A modern personal finance management application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"build": "echo \"No root build step; run frontend build via 'npm run frontend:build'\"",
"frontend:install": "cd frontend && npm ci",
"frontend:build": "cd frontend && npm run build",
"frontend:serve": "cd frontend && npm run serve",
"init-db": "node scripts/init-db.js",
"migrate-db": "node scripts/migrate-db.js",
"cleanup-db": "node scripts/cleanup-sample-data.js",
"docker:build": "docker-compose build frontend",
"docker:up:build": "docker-compose up -d --build",
"audit": "npm audit --audit-level moderate",
"smoke:transactions": "node scripts/smoke-test-transactions.js",
"update-deps": "npm update",
"check": "npm run lint && npm run frontend:build"
},
"keywords": [
"budget",
"expense",
"tracker",
"finance"
],
"author": "IT-BAER",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"expo-document-picker": "^14.0.8",
"expo-file-system": "^19.0.20",
"expo-sharing": "^14.0.8",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"helmet": "^7.2.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"pg": "^8.13.1",
"react": "^19.1.1",
"uuid": "^9.0.1",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.4"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"nodemon": "^3.1.9",
"typescript-eslint": "^8.51.0"
}
}