-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
13 lines (13 loc) · 866 Bytes
/
deno.json
File metadata and controls
13 lines (13 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"tasks": {
"dev": "export $(cat .env | xargs) && cd ./src && deno run --watch --allow-net --allow-read --allow-env --allow-run ./server/index.js" ,
"serve":"npm run start",
"build":"npm run build",
"run": "deno task dev & deno task serve",
"run-prod": "deno task dev & deno task build",
"test": " deno task build && deno test ./qa --allow-run --allow-net --allow-env --allow-read --import-map ./src/import_map.json ",
"api-bundle": "deno bundle --import-map ./src/import_map.json ./src/server/api/index.ts ./src/server/static/api.js ",
"debug": "cd ./src && deno run --allow-net --allow-read --allow-env --allow-run --import-map ./import_map.json --inspect ./server/index.js",
"reload": "deno cache --import-map ./src/server/import_map.json --reload ./src/server/index.js"
}
}