package.json
 1  {
 2    "name": "accounting-ledger",
 3    "version": "1.0.0",
 4    "description": "Accounting Ledger with Notion integration",
 5    "main": "backend/server.js",
 6    "scripts": {
 7      "dev": "concurrently \"npm run server\" \"npm run client\"",
 8      "server": "cd backend && nodemon server.js",
 9      "client": "cd frontend && npm start",
10      "build": "cd frontend && npm run build",
11      "install-backend": "cd backend && npm install",
12      "install-frontend": "cd frontend && npm install",
13      "install-all": "npm run install-backend && npm run install-frontend"
14    },
15    "keywords": [
16      "accounting",
17      "ledger",
18      "notion",
19      "finance"
20    ],
21    "author": "",
22    "license": "ISC",
23    "devDependencies": {
24      "concurrently": "^8.2.2",
25      "nodemon": "^3.0.2"
26    }
27  }
28