pf_app/package.json
Paul Trowbridge 73e8f5d202 Add CLAUDE.md project instructions and license field to package.json
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-02 20:47:15 -04:00

23 lines
457 B
JSON

{
"name": "pf_app",
"version": "1.0.0",
"description": "Pivot Forecast Application",
"main": "server.js",
"license": "MIT",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "cd ui && npm run build"
},
"dependencies": {
"apache-arrow": "^21.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^3.0.0"
}
}