-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 KB
/
package.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
{
"name": "nuxt-mail",
"version": "5.1.1",
"description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.",
"keywords": [
"email",
"express",
"frontend",
"inject",
"javascript",
"mail",
"nodemailer",
"npm",
"npm-package",
"nuxt",
"nuxt-module",
"nuxtjs",
"nuxtjs-module",
"server",
"webdevelopment"
],
"repository": "dword-design/nuxt-mail",
"funding": "https://github.com/sponsors/dword-design",
"license": "MIT",
"author": "Sebastian Landwehr <[email protected]>",
"type": "module",
"exports": "./dist/index.js",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"checkUnknownFiles": "base checkUnknownFiles",
"commit": "base commit",
"depcheck": "base depcheck",
"dev": "base dev",
"lint": "base lint",
"prepare": "base prepare",
"prepublishOnly": "base prepublishOnly",
"test": "base test"
},
"dependencies": {
"@dword-design/functions": "^6.0.0",
"@nuxt/kit": "^3.0.0",
"express": "^4.17.1",
"fs-extra": "^11.1.0",
"h3": "^1.0.2",
"nodemailer": "^6.4.11",
"nuxt-alias-path": "^2.0.0",
"nuxt-push-plugins": "^2.1.2",
"parse-packagejson-name": "^1.0.1"
},
"devDependencies": {
"@dword-design/base": "^11.0.4",
"@dword-design/base-config-nuxt-module": "^1.0.0",
"@dword-design/puppeteer": "^7.0.0",
"@nuxtjs/axios": "^5.13.1",
"axios": "^0",
"depcheck-package-name": "^3.0.0",
"execa": "^8.0.1",
"get-port": "^7.1.0",
"nuxt": "^3.3.3",
"nuxt-dev-ready": "^3.0.0",
"output-files": "^2.0.19",
"port-ready": "^0.1.0",
"smtp-tester": "^2.0.1",
"tree-kill-promise": "^3.0.9",
"with-local-tmp-dir": "^5.0.0"
},
"packageManager": "[email protected]+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}