-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
98 lines (98 loc) · 2.22 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
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
97
98
{
"name": "deno-ts-boilerplate",
"version": "0.0.1",
"description": "Minimalistic boilerplate to quick-start Deno development in TypeScript.",
"homepage": "https://github.com/jiifw/deno-ts-boilerplate",
"exports": {
"name": "deno-ts-boilerplate"
},
"keywords": [
"deno",
"javascript",
"boilerplate",
"express",
"fastify",
"microservices",
"typescript",
"eslint",
"serverless",
"backend",
"jest",
"service",
"back-end",
"prettier",
"project-template",
"starter-template",
"deno-server",
"typescript-boilerplate",
"cjs-modules",
"deno-typescript-boilerplate"
],
"author": {
"name": "Junaid Atari",
"email": "[email protected]",
"url": "https://github.com/blacksmoke26"
},
"compilerOptions": {
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"fmt": {
"include": [
"src/",
"__tests__/"
],
"indentWidth": 2,
"singleQuote": true,
"useTabs": false,
"lineWidth": 160,
"semiColons": true
},
"lint": {
"include": [
"src/",
"__tests__/"
],
"report": "json",
"rules": {
"tags": [
"recommended"
],
"exclude": [
"no-unused-vars",
"require-await"
]
}
},
"test": {
"include": [
"__tests__/"
]
},
"tasks": {
"start": "deno run --config ./deno.json -A src/index.ts",
"start:dev": "deno run --config ./deno.json -A --watch src/index.ts",
"start:debug": "deno run --config ./deno.json -A --inspect --watch src/index.ts",
"cron": "deno run --config ./deno.json -A src/cron.ts",
"clean": "rimraf coverage tmp runtime && mkdir coverage runtime",
"lint": "deno lint",
"prettier": "deno fmt",
"test": "deno test --reporter=dot",
"test:watch": "deno test --watch",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:delete": "pm2 delete ecosystem.config.js"
},
"unstable": [
"cron"
],
"imports": {
"~/": "./src/",
"rimraf": "npm:[email protected]"
}
}