-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
81 lines (81 loc) · 2.46 KB
/
deno.jsonc
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
{
"name": "@fathym/fathym-core-runtime",
"version": "0.0.0",
"exports": {
".": "./main.ts",
"./dev": "./dev.ts"
},
"license": "MIT",
"tasks": {
"build": "deno task build:fmt && deno task build:lint && deno task publish:check && deno task test",
"build:dev": "deno run -A dev.ts build",
"build:docker": "docker build --no-cache -t fathym-core-runtime -f DOCKERFILE .",
"build:fmt": "deno fmt",
"build:lint": "deno lint",
"build:main": "deno run -A main.ts build",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"clean:docker": "docker stop fathym-core-runtime || true && docker rm fathym-core-runtime || true",
"deploy": "npx rimraf cov && deno task build && deno task test && npx ftm git",
"deploy:docker": "docker run --name fathym-core-runtime --network fathym-runtimes --env-file .env.docker -dp 127.0.0.1:5500:5500 fathym-core-runtime",
"dev": "deno run -A --watch=apps/,configs/,data/,routes/,src/,static/ dev.ts",
"network:docker": "docker network create fathym-runtimes || true",
"publish:check": "deno publish --dry-run --allow-dirty",
"refresh:docker": "npx rimraf cov && deno task build:docker && deno task network:docker && deno task clean:docker && deno task deploy:docker",
"start": "deno run -A main.ts",
"test": "npx rimraf cov && deno test -A tests/tests.ts --coverage=cov",
"version": "deno run -A jsr:@fathym/common@0/build/version"
},
"imports": {
"@fathym/common": "jsr:@fathym/[email protected]",
"@fathym/eac": "jsr:@fathym/[email protected]",
"@fathym/eac-applications": "jsr:@fathym/[email protected]",
"@fathym/ioc": "jsr:@fathym/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/log": "jsr:@std/[email protected]"
},
"exclude": [
"**/_eac-runtime/*",
"!src/**/.exports.ts",
"!dev.ts",
"!main.ts",
"!mod.ts",
"!configs/*"
],
"lint": {
"include": [
"apps/",
"configs/",
"src/",
"tests/"
],
"exclude": [],
"rules": {
"tags": [
"recommended"
],
"include": [
"ban-untagged-todo"
],
"exclude": []
}
},
"fmt": {
"include": [
"apps/",
"configs/",
"src/",
"tests/"
],
"exclude": [],
"indentWidth": 2,
"lineWidth": 100,
"proseWrap": "preserve",
"semiColons": true,
"singleQuote": true,
"useTabs": false
},
"unstable": [
"kv"
],
"lock": false
}