-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 1.01 KB
/
deno.json
File metadata and controls
25 lines (25 loc) · 1.01 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
{
"tasks": {
"listen": "deno run --allow-net --allow-env --allow-read main.ts",
"listen:dev": "deno run --watch --allow-net --allow-env --allow-read main.ts",
"dev": "./env/dev.sh",
"dev:stop": "./env/dev.sh down",
"dev:start": "deno task bundle:docs && deno task listen:dev",
"bundle:docs": "deno run --allow-read --allow-write --allow-env npm:swagger-cli bundle -o docs/bundle.yml -t yaml docs/index.yml",
"test": "./env/test.sh"
},
"imports": {
"@cross/jwt": "jsr:@cross/jwt@^0.5.0",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/expect": "jsr:@std/expect@^1.0.8",
"@std/testing": "jsr:@std/testing@^1.0.5",
"@std/uuid": "jsr:@std/uuid@^1.0.4",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@stdext/crypto": "jsr:@stdext/crypto@^0.0.6",
"@types/supertest": "npm:@types/supertest@^6.0.2",
"supertest": "npm:supertest@^7.0.0",
"swagger-cli": "npm:swagger-cli@^4.0.4"
}
}