-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.71 KB
/
deno.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
{
"tasks": {
"dev": "deno -A --watch ./src/main.ts",
"debug": "deno -A --watch --inspect ./src/main.ts",
"db:start-mongo": "docker run --name mongodb-container -d -p 27017:27017 -v mongo-data:/data/db -e MONGO_INITDB_ROOT_USERNAME=myuser -e MONGO_INITDB_ROOT_PASSWORD=mypass mongo:latest",
"generate:graphql": "deno -A codegen.ts",
"db:migrate": "deno --env-file -A migrations.ts"
},
"imports": {
"@apollo/server": "npm:@apollo/server@^4.11.0",
"@es-toolkit/es-toolkit": "jsr:@es-toolkit/es-toolkit@^1.25.2",
"@graphql-codegen/cli": "npm:@graphql-codegen/[email protected]",
"@graphql-codegen/core": "npm:@graphql-codegen/[email protected]",
"@graphql-codegen/typescript": "npm:@graphql-codegen/[email protected]",
"@graphql-codegen/typescript-resolvers": "npm:@graphql-codegen/[email protected]",
"@graphql-tools/graphql-file-loader": "npm:@graphql-tools/[email protected]",
"@graphql-tools/load": "npm:@graphql-tools/[email protected]",
"@graphql-tools/schema": "npm:@graphql-tools/[email protected]",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.4",
"@std/path": "jsr:@std/path@^1.0.6",
"@types/express": "npm:@types/[email protected]",
"body-parser": "npm:body-parser@^2.0.1",
"cors": "npm:[email protected]",
"dotenv": "npm:[email protected]",
"express": "npm:[email protected]",
"express-oauth2-jwt-bearer": "npm:[email protected]",
"graphql": "npm:[email protected]",
"graphql-yoga": "npm:[email protected]",
"helmet": "npm:[email protected]",
"lodash": "npm:[email protected]",
"luxon": "npm:[email protected]",
"mongodb": "npm:[email protected]",
"typescript": "npm:[email protected]",
"zod": "npm:[email protected]"
}
}