-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "crm-bot",
"version": "1.12.0",
"description": "Slack bot for GTM channel that updates Attio CRM",
"main": "src/index-claude.js",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "node src/index-claude.js",
"dev": "NODE_ENV=development nodemon -r dotenv/config src/index-claude.js dotenv_config_path=.env.dev",
"dev:ngrok": "concurrently \"NODE_ENV=development nodemon -r dotenv/config src/index-claude.js dotenv_config_path=.env.dev\" \"npx ngrok http 3000\"",
"dev:socket": "NODE_ENV=development nodemon -r dotenv/config src/index-claude.js dotenv_config_path=.env.dev",
"local": "node local-bot.js",
"test": "node tests/test.js",
"test:daily-assessment": "node test_daily_assessment.js",
"test:daily-assessment:real": "node test_daily_assessment.js --run-real-test",
"cron:daily": "node scripts/run-daily-assessment.js",
"conversations:clean": "node scripts/clean-old-conversations.js",
"conversations:view": "node view-conversations.js",
"docs:consolidate": "node scripts/consolidate-docs.js",
"docs:view": "ls -la docs/"
},
"keywords": [
"slack",
"bot",
"attio",
"crm",
"claude",
"railway"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@slack/bolt": "^4.0.0",
"axios": "^1.6.7",
"dotenv": "^16.4.1"
},
"devDependencies": {
"concurrently": "^9.2.0",
"ngrok": "^5.0.0-beta.2",
"nodemon": "^3.0.3"
}
}