
- Express server with routes for index and API endpoints - CRUD operations for markdown journals via REST API - Modular view components (header, main, footer, page) - UUID-based file management system for journals - Content-editable journal editor with AI assistant features - Package.json with express and uuid dependencies - Basic project structure with assets, config, tests, views directories 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
236 B
JSON
13 lines
236 B
JSON
{
|
|
"name": "conception-assistant",
|
|
"version": "1.0.0",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"test": "node tests/all.test.js"
|
|
},
|
|
"dependencies": {
|
|
"uuid": "^13.0.0",
|
|
"express": "^4.18.2"
|
|
}
|
|
} |