forked from e2b-dev/E2B
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 5 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "e2b",
"version": "0.2.0",
"description": "Developer-first AgentOps platform - deploy, test, and monitor AI agents",
"homepage": "https://e2b.dev",
"author": {
"name": "FoundryLabs, Inc.",
"email": "hellow@e2b.dev",
"url": "https://e2b.dev"
},
"bugs": "https://github.com/e2b-dev/e2b/issues",
"repository": {
"type": "git",
"url": "https://github.com/e2b-dev/e2b"
},
"scripts": {
"dev:next": "next dev",
"start:next": "next start",
"dev-otel": "npx concurrently -p none \"next dev\" \"npm run start:api-otel\" \"npm run start:playground\"",
"dev": "OTEL_SDK_DISABLED=\"true\" npx concurrently -p none \"next dev\" \"npm run start:api\" \"npm run start:playground\"",
"dev:api-service": "npx concurrently \"npm run start:api\" \"npm run start:playground\"",
"build": "next build",
"start:api-otel": "cd api-service && cross-env PYTHONUNBUFFERED=1 OTEL_METRIC_EXPORT_INTERVAL=15000 OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES poetry run opentelemetry-instrument --service_name agent-api --exporter_otlp_endpoint \"ingest.lightstep.com:443\" --traces_exporter console,otlp_proto_grpc --metrics_exporter console,otlp_proto_grpc gunicorn --bind 0.0.0.0:49155 --workers 1 --threads 2 --timeout 120 app:app -k uvicorn.workers.UvicornWorker",
"start:api": "cd api-service && cross-env PYTHONUNBUFFERED=1 poetry run uvicorn app:app --reload --host 0.0.0.0 --port 49155",
"start:playground": "cd api-service/playground && npm run dev",
"install:api-service": "cd api-service && poetry install --with dev --no-root && cd playground && npm install && poetry run opentelemetry-bootstrap -a install",
"install:api-playground": "cd api-service/playground && npm install",
"install:all": "npm install && npm run install:api-service && npm run install:api-playground",
"start": "docker compose build && (npm run db:reset || cd . && npm run db:start && docker compose up)",
"stop": "docker compose down && npm run db:stop",
"lint": "next lint",
"lint:fix": "next lint --fix",
"db:generate": "prisma generate",
"db:pull": "prisma db pull",
"supabase:dump": "npx --yes supabase@1.46.5 db dump -f supabase/migrations/1680452567_name.sql",
"supabase:generate": "npx --yes supabase@1.46.5 gen types typescript --project-id \"ntjfcwpzsxugrykskdgi\" --schema public > db/supabase.ts",
"postinstall": "npm run db:generate",
"db:start": "npx --yes supabase@1.46.5 start -x imgproxy,storage-api,studio,inbucket,edge-runtime,logflare,postgres-meta,deno-relay,pgadmin-schema-diff,vector,migra",
"db:stop": "npx --yes supabase@1.46.5 stop",
"db:reset": "npx --yes supabase@1.46.5 db reset",
"generate:api-client": "openapi-typescript api-service/openapi.json --support-array-length --alphabetize --output api-client/api/schema.gen.ts"
},
"dependencies": {
"@devbookhq/splitter": "^1.4.0",
"@headlessui/react": "^1.7.14",
"@octokit/auth-app": "^4.0.13",
"@octokit/rest": "^19.0.11",
"@octokit/webhooks": "^11.1.0",
"@opentelemetry/api": "^1.4.1",
"@prisma/client": "^4.13.0",
"@sentry/nextjs": "^7.55.2",
"@supabase/auth-helpers-nextjs": "^0.5.5",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/supabase-js": "^2.10.0",
"@tailwindcss/forms": "^0.5.3",
"@tiptap/core": "^2.0.0-beta.220",
"@tiptap/extension-placeholder": "^2.0.0-beta.220",
"@tiptap/react": "^2.0.0-beta.220",
"@tiptap/starter-kit": "^2.0.0-beta.220",
"@vercel/og": "^0.5.8",
"clsx": "^1.2.1",
"cross-fetch": "^3.1.5",
"exponential-backoff": "^3.1.1",
"http-proxy-middleware": "^3.0.0-beta.1",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.240.0",
"matcher": "^5.0.0",
"micro-cors": "^0.1.1",
"nanoid": "^4.0.1",
"next": "13.2.3",
"next-superjson-plugin": "^0.5.6",
"openai": "^3.2.1",
"openapi-typescript-fetch": "^1.1.3",
"path-browserify": "^1.0.1",
"posthog-js": "^1.63.3",
"posthog-node": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"sharp": "^0.32.0",
"superjson": "^1.12.2",
"swr": "^2.0.4",
"tiptap-markdown": "^0.7.2",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/lodash.debounce": "^4.0.7",
"@types/micro-cors": "^0.1.3",
"@types/node": "^18.14.6",
"@types/path-browserify": "^1.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cssnano": "^6.0.0",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
"eslint-plugin-tailwindcss": "^3.10.1",
"eslint-plugin-unused-imports": "^2.0.0",
"openapi-typescript": "^6.2.1",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prisma": "^4.13.0",
"supabase": "^1.46.5",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5"
},
"overrides": {
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}