This repository was archived by the owner on Aug 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.73 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.73 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
{
"tasks": {
"dev": "deno run --allow-net --env --allow-env --allow-sys --allow-read --allow-ffi ./src/main.ts",
"test": "deno test --env --allow-env --allow-read --allow-ffi --allow-sys --allow-net",
"db:migrate": "deno --env -A --node-modules-dir npm:drizzle-kit migrate",
"db:generate": "deno --env -A --node-modules-dir npm:drizzle-kit generate",
"db:push": "deno --env -A --node-modules-dir npm:drizzle-kit push"
},
"imports": {
"@faker-js/faker": "npm:@faker-js/faker@^9.7.0",
"@langchain/core": "npm:@langchain/core@^0.3.53",
"@langchain/langgraph": "npm:@langchain/langgraph@^0.2.68",
"@types/bcrypt": "npm:@types/bcrypt@^5.0.2",
"@types/cookie-parser": "npm:@types/cookie-parser@^1.4.8",
"@types/cors": "npm:@types/cors@^2.8.18",
"@types/express": "npm:@types/express@^5.0.1",
"@types/pg": "npm:@types/pg@^8.15.1",
"@types/supertest": "npm:@types/supertest@^6.0.3",
"bcrypt": "npm:bcrypt@^6.0.0",
"cookie-parser": "npm:cookie-parser@^1.4.7",
"cors": "npm:cors@^2.8.5",
"drizzle-kit": "npm:drizzle-kit@^0.31.1",
"drizzle-orm": "npm:drizzle-orm@^0.43.1",
"express": "npm:express@^5.1.0",
"@langchain/mistralai": "npm:@langchain/mistralai@^0.2.0",
"jose": "npm:jose@^6.0.11",
"pg": "npm:pg@^8.16.0",
"socket.io": "npm:socket.io@^4.8.1",
"socket.io-client": "npm:socket.io-client@^4.8.1",
"supertest": "npm:supertest@^7.1.1",
"uuid": "npm:uuid@^11.1.0",
"zod": "npm:zod@^3.24.4"
},
"nodeModulesDir": "auto",
"unstable": [
"sloppy-imports"
],
"fmt": {
"options": {
"indentWidth": 2
}
},
"compilerOptions": {
"types": [
"./src/index.d.ts"
],
"strict": true,
"experimentalDecorators": true
}
}