This repository was archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "pdfgenerator",
"version": "1.0.0",
"description": "Generates PDF documents (letters, contracts, invoices...)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon -w src -w data -w templates -w index.js -e js,ejs,css,png --inspect=0.0.0.0:9227 index.js",
"lint": "eslint ./ --ext js",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"microrealestate",
"realestate",
"document",
"pdf"
],
"author": "Camel Aissani",
"license": "MIT",
"bugs": {
"url": "https://github.com/microrealestate/pdfgenerator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microrealestate/pdfgenerator.git"
},
"dependencies": {
"ejs": "3.1.6",
"express": "4.17.1",
"express-winston": "2.6.0",
"file-url": "3.0.0",
"handlebars": "4.7.7",
"i18n": "0.13.3",
"jsonwebtoken": "8.5.1",
"locale": "0.1.0",
"moment": "2.29.1",
"mongodb": "3.6.6",
"mongoose": "5.12.8",
"puppeteer": "10.4.0",
"winston": "2.4.4"
},
"devDependencies": {
"eslint": "7.26.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"nodemon": "2.0.7",
"prettier": "2.3.0"
}
}