-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
53
54
55
56
57
{
"name": "pdf-to-speech",
"type": "module",
"scripts": {
"start": "node src/index.js",
"start:dev": "node --inspect --no-warnings=ExperimentalWarning --experimental-specifier-resolution=node --loader ts-node/esm/transpile-only src/index.ts",
"build": "tsc --build tsconfig.prod.json",
"build:dev": "tsc --build tsconfig.dev.json",
"test:unit": "vitest .unit.test.ts --config vitest.unit.config.js",
"test:unit:run": "npm run test:unit -- --run",
"test:integration": "NODE_ENV=test vitest --config vitest.integration.config.js .integration.test.ts",
"test:integration:run": "npm run test:integration -- --run",
"lint": "eslint . --ext .ts --cache --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@fastify/cors": "9.0.1",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.3.0",
"@fastify/swagger": "8.14.0",
"@fastify/swagger-ui": "4.0.0",
"@fastify/type-provider-typebox": "4.0.0",
"@sinclair/typebox": "0.32.34",
"config": "3.3.12",
"elevenlabs": "0.8.2",
"fastify": "4.28.1",
"pdf2json": "3.1.3",
"pino": "9.2.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"@types/config": "3.3.4",
"@types/node": "20.14.9",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.2",
"prettier-eslint": "16.3.0",
"ts-node": "10.9.2",
"typescript": "5.5.2",
"vitest": "1.6.0"
},
"volta": {
"node": "20.14.0",
"npm": "10.8.1"
},
"engines": {
"node": "20.14.0"
},
"packageManager": "npm@10.8.1"
}