-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
96 lines (96 loc) · 3.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@aaa_bbb_ccc/www_xxx_yyy_zzz",
"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 www_xxx_yyy_zzz -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 www_xxx_yyy_zzz || true && docker rm www_xxx_yyy_zzz || true",
"deploy": "npx rimraf cov && deno task build && deno task test && npx ftm git",
"deploy:docker": "docker run --name www_xxx_yyy_zzz --network eac-runtimes --env-file .env.docker -dp 127.0.0.1:3000:3000 www_xxx_yyy_zzz",
"dev": "deno run -A --watch=apps/,configs/,data/,routes/,src/,static/ dev.ts",
"network:docker": "docker network create eac-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/atomic": "jsr:@fathym/atomic-design-kit@0.0.233",
"@fathym/atomic-icons": "jsr:@fathym/atomic-icons@0",
"@fathym/common": "jsr:@fathym/common@0",
"@fathym/eac": "jsr:@fathym/eac@0",
"@fathym/eac-applications": "jsr:@fathym/eac-applications@0.0.48",
"@fathym/eac-deno-kv": "jsr:@fathym/eac-deno-kv@0",
"@fathym/eac-dfs": "jsr:@fathym/eac-dfs@0",
"@fathym/flow": "../flow/unified.ts",
"@fathym/ioc": "jsr:@fathym/ioc@0",
"monaco-editor": "npm:monaco-editor@0.52.2",
"preact": "npm:preact@10.20.1",
"@std/assert": "jsr:@std/assert@1.0.6",
"@std/log": "jsr:@std/log@0.224.6",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"tailwindcss/unimportant": "npm:tailwindcss-unimportant@2.1.1"
},
"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,
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}