-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nodemessage",
"version": "1.0.0",
"description": "Node.js 邮件发送服务",
"main": "server/app.js",
"private": true,
"scripts": {
"start": "node ./server/app",
"dev": "nodemon ./server/app",
"test": "node test/basic.test.js",
"build": "echo \"Building application...\" && npm ci --only=production",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js",
"pm2:delete": "pm2 delete ecosystem.config.js",
"logs": "pm2 logs",
"status": "pm2 status"
},
"keywords": [
"nodejs",
"express",
"email",
"mail",
"nodemailer",
"smtp",
"email-service",
"api",
"logging",
"winston"
],
"author": "superRice <1246333567@qq.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/node-email-service.git"
},
"bugs": {
"url": "https://github.com/yourusername/node-email-service/issues"
},
"homepage": "https://github.com/yourusername/node-email-service#readme",
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^17.1.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"nodemailer": "^7.0.5",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}