-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 952 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 952 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
{
"name": "pdf-rendering-service",
"version": "1.0.0",
"main": "dist/api.js",
"scripts": {
"build": "tsc",
"start:api": "node dist/api.js",
"start:worker": "node dist/worker.js",
"dev:api": "ts-node src/api.ts",
"dev:worker": "ts-node src/worker.ts",
"db:migrate": "sequelize-cli db:migrate"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/rate-limit": "^10.3.0",
"adm-zip": "^0.5.10",
"bullmq": "^5.65.1",
"fastify": "^5.8.1",
"file-type": "^21.1.1",
"ioredis": "^5.3.2",
"markdown-it": "^14.1.1",
"nunjucks": "^3.2.4",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"@types/nunjucks": "^3.2.6",
"@types/uuid": "^11.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}