-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 968 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 968 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
38
39
40
41
42
43
{
"name": "steesh",
"version": "1.0.0",
"description": "Simple node js application to send PDF's to emails.",
"main": "server.js",
"scripts": {
"start": "nodemon index.js",
"start:prod": "node index.js",
"test": "jest --coverage"
},
"engines": {
"node": "9.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.3",
"dotenv": "^5.0.1",
"ejs": "^2.5.9",
"express": "^4.16.3",
"express-healthcheck": "^0.1.0",
"fs": "0.0.1-security",
"jspdf": "^1.3.5",
"knex": "^0.14.6",
"knex-logger": "^0.1.0",
"mailgun-js": "^0.18.0",
"milligram": "^1.3.0",
"mixpanel": "^0.10.1",
"morgan": "^1.9.1",
"pg": "^7.4.1",
"puppeteer": "^1.11.0",
"regex": "^0.1.1",
"request": "^2.88.0",
"url-parse": "^1.4.4",
"winston": "^3.1.0"
},
"devDependencies": {
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.2"
}
}