-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
50 lines (50 loc) · 1.14 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
{
"name": "@redstinkcreature/deno-nestjs-vanilla",
"version": "0.0.1",
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-env ./src/main.ts",
"test": "deno test ./src/**/*.test.ts",
"test:e2e": "deno test --allow-net --allow-read --allow-env ./test/**/*.test.ts"
},
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"imports": {
"@nestjs/common": "npm:@nestjs/common@10",
"@nestjs/core": "npm:@nestjs/core@10",
"@nestjs/platform-express": "npm:@nestjs/platform-express@10",
"express": "npm:express@4",
"reflect-metadata": "npm:^0.2.0",
"rxjs": "npm:rxjs@7",
"@nestjs/testing": "npm:@nestjs/testing@10",
"supertest": "npm:supertest@7",
"assert": "jsr:@std/assert"
},
"test": {
"include": [
"src/**/*.test.ts"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
]
},
"lint": {
"include": [
"src/"
],
"rules": {
"tags": [
"recommended"
]
}
}
}