-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
54
55
56
57
58
59
60
{
"name": "document-generation-api",
"version": "1.0.0",
"description": "API for generating various document formats from HTML and Markdown",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "pnpm build && nodemon src/index.js",
"test": "node test.js",
"deploy": "pnpm build && ./bin/deploy.sh",
"build": "./bin/build.sh",
"stripe:products": "node bin/create-stripe-products.js"
},
"keywords": [
"pdf",
"doc",
"excel",
"powerpoint",
"epub",
"markdown",
"html",
"conversion",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^1.8.2",
"@profullstack/spa-router": "^1.11.1",
"@supabase/supabase-js": "^2.49.4",
"chalk": "^5.3.0",
"charts.css": "^1.1.0",
"commander": "^12.0.0",
"docx": "^9.5.0",
"dotenv": "^16.5.0",
"dotenv-flow": "^4.1.0",
"form-data": "^4.0.2",
"hono": "^4.1.3",
"inquirer": "^9.2.15",
"jsdom": "^26.1.0",
"mailgun.js": "^12.0.1",
"marked": "^15.0.8",
"puppeteer": "^22.5.0",
"qrcode": "^1.5.4",
"stripe": "^14.22.0",
"uuid": "^11.1.0",
"ws": "^8.18.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"chai": "^5.2.0",
"mocha": "^11.7.0",
"nodemon": "^3.1.0",
"sinon": "^21.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}