-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "html-pdf-financial-statement-template",
"version": "1.0.0",
"description": "An HTML monthly statement template for financial institutions for use in a browser and with HTML to PDF generation.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"web:plain-html": "http-server -c-1 -p 8085",
"web:react": "nodemon --exec 'yarn babel-node ./react-pdf/web/serve-http.js'",
"generate-pdf:plain-html": "yarn babel-node ./generate-pdf.js",
"generate-pdf:react": "yarn babel-node ./react-pdf/generate-pdf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anvilco/html-pdf-financial-statement-template.git"
},
"keywords": [
"pdf",
"html",
"react",
"api",
"statement",
"monthly statement",
"financial services",
"template"
],
"author": "Anvil Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilco/html-pdf-financial-statement-template/issues"
},
"homepage": "https://github.com/anvilco/html-pdf-financial-statement-template#readme",
"dependencies": {
"@anvilco/anvil": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/node": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@tinyhttp/app": "^1",
"http-server": "^14.1.1",
"nodemon": "^3.0.1"
},
"nodemonConfig": {
"delay": 300
}
}