-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 970 Bytes
/
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
{
"name": "jeep-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "nodemon -r dotenv/config index.js",
"test": "jest",
"prepare": "husky install"
},
"author": "Martin Fracker <[email protected]>",
"license": "MIT",
"dependencies": {
"@koa/router": "^12.0.0",
"axios": "^0.27.2",
"cross-env": "^7.0.3",
"email-templates": "^10.0.1",
"koa": "^2.13.4",
"nodemailer": "^6.7.8",
"nodemailer-mailgun-transport": "^2.1.4",
"pdf.js-extract": "^0.2.0",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/koa__router": "^8.0.11",
"dotenv": "^16.0.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"overrides": {
"mailgun.js": "^8.0.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}