-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 933 Bytes
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
{
"name": "convergence-health-planner",
"version": "1.0.0",
"private": true,
"description": "ComboDiet — a small web app for organizing symptom overlap and diet discussion notes across multiple conditions.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"check": "node --check server.js && node --check app.js && node --check nutrition-engine.js && node --check scripts/export-spreadsheet.js",
"export-data": "node scripts/export-spreadsheet.js && node scripts/parse-spreadsheet.mjs",
"test:e2e": "playwright test",
"test": "npm run check && npm run test:e2e",
"checkmate:status": "checkmate status combodiet-e2e",
"checkmate:affected": "checkmate affected --json > .cursor/cm_list.json"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"checkmateai": "^0.1.6",
"xlsx": "^0.18.5"
}
}