generated from dsckiet/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
{
"name": "birthday-wisher",
"version": "1.0.0",
"description": "Automated Birthday wishes email for users of DSC KIET Portal.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"lint": "prettier \"**/*.{js, json, md, html, css, yml}\" --write"
},
"repository": {
"type": "git",
"url": "https://github.com/dsckiet/birthday-wisher.git"
},
"author": {
"name": "Developer Student Clubs KIET",
"email": "[email protected]",
"url": "https://dsckiet.com"
},
"contributors": [
{
"name": "Ritik Srivastava",
"email": "[email protected]",
"url": "https://ritiksr25.tech"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dsckiet/birthday-wisher/issues"
},
"homepage": "https://github.com/dsckiet/birthday-wisher#readme",
"keywords": [
"birthday-wisher",
"automated-birthday-wisher",
"dsckiet",
"mongodb"
],
"dependencies": {
"axios": "^0.21.1",
"canvas": "^2.6.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"log4js": "^6.1.2",
"node-cron": "^3.0.0",
"nodemailer": "^6.4.6",
"nodemailer-html-to-text": "^3.1.0",
"nodemon": "^2.0.7"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.1.2"
},
"lint-staged": {
"*.{js, jsx, json, md, html, css, yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}