generated from langchain-ai/new-langgraphjs-project
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
91 lines (91 loc) · 3.47 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "example-graph",
"version": "0.0.1",
"description": "A starter template for creating a LangGraph workflow.",
"packageManager": "yarn@1.22.22",
"main": "my_app/graph.ts",
"author": "Your Name",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "cross-env TZ=America/Los_Angeles node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
"test:int": "cross-env TZ=America/Los_Angeles node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
"test:single": "cross-env TZ=America/Los_Angeles NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.js --testTimeout 100000",
"format": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format:check": "prettier --check .",
"lint:langgraph-json": "node scripts/checkLanggraphPaths.js",
"lint:all": "yarn lint & yarn lint:langgraph-json",
"test:all": "yarn test && yarn test:int && yarn lint:langgraph",
"start:auth": "yarn tsx src/clients/auth-server.ts",
"generate_post": "yarn tsx scripts/generate-demo-post.ts",
"cron:create": "yarn tsx scripts/crons/create-cron.ts",
"cron:delete": "yarn tsx scripts/crons/delete-cron.ts",
"cron:list": "yarn tsx scripts/crons/list-crons.ts",
"graph:backfill": "yarn tsx scripts/backfill.ts",
"get:scheduled_runs": "yarn tsx scripts/get-scheduled-runs.ts",
"get:used_links": "yarn tsx scripts/get-all-used-links.ts",
"graph:delete:run_thread": "yarn tsx scripts/delete-run-thread.ts",
"langgraph:up": "langgraph up --watch --port 54367"
},
"dependencies": {
"@arcadeai/arcadejs": "^0.2.2",
"@googleapis/youtube": "^20.0.0",
"@langchain/anthropic": "^0.3.9",
"@langchain/community": "^0.3.22",
"@langchain/core": "^0.3.22",
"@langchain/google-vertexai-web": "^0.1.2",
"@langchain/langgraph": "^0.2.39",
"@langchain/langgraph-sdk": "^0.0.36",
"@mendable/firecrawl-js": "^1.10.1",
"@octokit/rest": "^21.0.2",
"@slack/web-api": "^7.7.0",
"@supabase/supabase-js": "^2.47.10",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"file-type": "^19.6.0",
"google-auth-library": "^9.15.0",
"langsmith": "0.2.15-rc.6",
"moment": "^2.30.1",
"passport": "^0.7.0",
"passport-twitter": "^1.0.4",
"playwright": "^1.49.1",
"twitter-api-v2": "^1.18.2",
"uuid": "^11.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.7",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/jest": "^29.5.0",
"@types/node": "^22.10.6",
"@types/passport": "^1.0.17",
"@types/passport-twitter": "^1.0.40",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"timezone-mock": "^1.3.6",
"ts-jest": "^29.1.0",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}