-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.17 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.17 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
{
"name": "botd",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"register": "node src/register-commands.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/ --max-warnings=0",
"lint:fix": "eslint src/ --fix",
"build": "echo 'Build step placeholder - add if needed'",
"validate": "npm run lint && npm run test",
"precommit": "npm run validate",
"bot-health": "node scripts/bot-health/functional-health-check.js",
"roadmap-sync": "node scripts/roadmap/github-sync.js",
"roadmap-status": "node scripts/roadmap/progress-tracker.js status",
"roadmap-report": "node scripts/roadmap/progress-tracker.js report",
"validate-phase": "node scripts/roadmap/milestone-validator.js",
"roadmap-health": "node scripts/roadmap/milestone-validator.js health-check",
"audit-findings": "node scripts/roadmap/progress-tracker.js audit-findings",
"audit-compliance": "node scripts/roadmap/progress-tracker.js audit-compliance",
"audit-tasks": "node scripts/roadmap/progress-tracker.js audit-tasks",
"milestone-validate-start": "node scripts/roadmap/progress-tracker.js milestone-validate-start",
"milestone-validate-complete": "node scripts/roadmap/progress-tracker.js milestone-validate-complete",
"milestone-health": "node scripts/roadmap/progress-tracker.js milestone-health"
},
"keywords": [
"discord",
"bot",
"productivity",
"pomodoro",
"timer"
],
"author": "",
"license": "ISC",
"description": "Discord Productivity Bot with task management, Pomodoro timers, and gamified points system",
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"@octokit/rest": "^22.0.0",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"dayjs": "^1.11.13",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"marked": "^15.0.12",
"node-cron": "^4.1.0",
"pg": "^8.16.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"jest": "^30.0.0",
"nodemon": "^3.1.10"
}
}