Files
firecrawl/apps/test-suite/package.json
T

34 lines
1.3 KiB
JSON
Raw Normal View History

2024-05-03 17:23:25 -03:00
{
"name": "test-suite",
"version": "1.0.0",
"description": "",
"scripts": {
2024-05-17 18:32:44 -03:00
"test:suite": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false",
2024-05-22 14:26:29 -03:00
"test:load": "artillery run --output ./load-test-results/test-run-report.json load-test.yml",
2024-05-15 15:50:50 -03:00
"test:scrape": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false --testPathPattern=tests/scrape.test.ts",
"test:crawl": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false --testPathPattern=tests/crawl.test.ts",
"test:schema-validation": "npx jest --detectOpenHandles --forceExit --openHandlesTimeout=120000 --watchAll=false --testPathPattern=tests/schema-validation.test.ts"
2024-05-03 17:23:25 -03:00
},
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
2024-05-08 11:38:46 -07:00
"@dqbd/tiktoken": "^1.0.14",
"@supabase/supabase-js": "^2.43.1",
2024-05-03 17:23:25 -03:00
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"openai": "^4.40.2",
"playwright": "^1.43.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
2024-05-03 17:23:25 -03:00
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
2024-08-14 19:33:09 +02:00
"artillery": "^2.0.19",
"typescript": "^5.4.5",
"zod": "^3.24.1"
2024-05-03 17:23:25 -03:00
}
}