-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.76 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
71
72
73
{
"name": "dumbpad",
"version": "1.0.8",
"description": "A simple notepad application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --ignore data/** --ignore .playwright-cli/** --ignore public/Assets/asset-manifest.json --ignore public/Assets/manifest.json server.js",
"check": "node scripts/check-js.js",
"test:ai-provider": "node test_ai_provider.js",
"test:ai-queue": "node test_ai_queue_relations.js",
"test:relations": "node test_relations_calculator.js",
"test:thought-ai-status": "node test_thought_ai_status.js",
"test:thought-api-client": "node test_thought_api_client.js",
"test:thought-outbox": "node test_thought_outbox.js",
"test:thought-attachments": "node test_thought_attachments.js",
"test:assets": "node test_asset_routes.js",
"test:sidebar-title-search": "node test_sidebar_title_search.js",
"test:image-paste": "node test_image_paste_integration.js",
"test:thought-card-renderer": "node test_thought_card_renderer.js",
"test:thought-editor": "node test_thought_editor.js",
"test:thought-quick-add": "node test_thought_quick_add.js",
"test:thought-relations-panel": "node test_thought_relations_panel.js",
"test:thought-relations-state": "node test_thought_relations_state.js",
"test:thought-tags": "node test_thought_tags.js",
"test:thought-text-formatting": "node test_thought_text_formatting.js",
"test:thought-swipe": "node test_thought_swipe.js",
"test:time-command": "node test_time_command.js",
"test:hybrid-editor-time-command": "node test_hybrid_editor_time_command.js",
"test:scroll-helper": "node test_scroll_helper_regression.js",
"test:search-indexing": "node test_search_indexing.js",
"test:thought-modules": "npm run test:thought-ai-status && npm run test:thought-attachments && npm run test:thought-card-renderer && npm run test:thought-editor && npm run test:thought-quick-add && npm run test:thought-relations-panel && npm run test:thought-relations-state && npm run test:thought-swipe && npm run test:thought-tags && npm run test:thought-text-formatting && npm run test:time-command && npm run test:hybrid-editor-time-command",
"test:note-sync": "node test_note_sync_controller.js",
"test:hybrid-display-sanitizer": "node test_hybrid_display_sanitizer.js",
"test:notepad-title-task": "node test_notepad_title_task_styles.js",
"test:notepad-pinning": "node test_notepad_pinning.js",
"test:agent-skill": "node test_dumbpad_api_skill.js",
"test:pwa-cache": "node test_pwa_cache_regression.js",
"test:startup-performance": "node test_startup_performance.js",
"test:api": "node test_api_regression.js",
"test:thoughts-migration": "node test_migrate_thoughts_local.js",
"test:s3-migration": "node test_migrate_local_to_s3_cli.js",
"test:s3-storage": "node test_s3_storage_regression.js",
"test:s3-prefix": "node test_s3_prefix_tools.js",
"test:s3-real": "node test_s3_real_smoke.js",
"ai:backfill-prefix": "node scripts/ai-backfill-prefix.js",
"generate-icons": "node scripts/generate-png.js",
"docker:update": "node scripts/update-docker-container.js",
"seed:demo": "node scripts/seed-demo-data.js --reset"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1055.0",
"@aws-sdk/s3-request-presigner": "^3.1055.0",
"@highlightjs/cdn-assets": "^11.11.1",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^5.1.0",
"fuse.js": "^7.1.0",
"ipaddr.js": "^2.2.0",
"marked": "^15.0.11",
"marked-alert": "^2.1.2",
"marked-extended-tables": "^2.0.1",
"marked-highlight": "^2.2.2",
"sharp": "^0.33.2",
"vditor": "^3.11.2",
"ws": "^8.18.2"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}