-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 841 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 841 Bytes
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
{
"name": "ynab-mailer",
"version": "1.1.0",
"private": true,
"main": "index.js",
"scripts": {
"start:dev": "DEBUG=email-templates nodemon index.js",
"start": "NODE_ENV=Production node index.js",
"test": "jest",
"test:dev": "jest --watch",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.0.0",
"currency-formatter": "^1.5.9",
"dotenv": "^17.0.0",
"email-templates": "^12.0.3",
"node-schedule": "^2.1.1",
"nodemailer": "^7.0.0",
"nodemon": "^3.0.1",
"pug": "^3.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"eslint": "^9.13.0",
"eslint-plugin-promise": "^7.1.0",
"globals": "^16.4.0",
"jest": "^30.0.0"
},
"engines": {
"node": "20.20.x"
}
}