-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "swiftpost",
"version": "1.0.0",
"author": "Jonas Tomanga",
"description": "A package for sending authentication emails with support for NestJS and non-NestJS projects.",
"scripts": {
"start": "node dist/index.js",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"templ:build": "turbo run build --filter=@swiftpost/templ",
"templ:test": "turbo run test --filter=@swiftpost/templ-tests",
"templ:dev": "turbo run dev --filter=@swiftpost/templ",
"mail:build": "turbo run build --filter=@swiftpost/mail",
"mail:dev": "turbo run dev --filter=@swiftpost/mail",
"mail:test": "turbo run test --filter=@swiftpost/mail-tests"
},
"keywords": [
"email",
"authentication",
"nodemailer",
"nestjs"
],
"license": "MIT",
"packageManager": "pnpm@9.12.13",
"devDependencies": {
"@types/node": "catalog:",
"turbo": "^2.2.3",
"typescript": "catalog:",
"vitest": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"onFail": "error"
},
"runtime": {
"name": "node",
"onFail": "error"
}
}
}