-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "docuchat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "npm install --include=dev && npx tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"watch": "npx tsc -w",
"seed": "tsx prisma/seed.ts",
"db:gen": "prisma generate",
"db:mig": "prisma migrate dev --name genericname",
"db:mig-prod": "prisma migrate deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxKolbe/ts-node-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/MaxKolbe/ts-node-template/issues"
},
"homepage": "https://github.com/MaxKolbe/ts-node-template#readme",
"dependencies": {
"@bull-board/api": "^7.0.0",
"@bull-board/express": "^7.0.0",
"@logtail/node": "^0.5.8",
"@logtail/winston": "^0.5.8",
"@modelcontextprotocol/sdk": "^1.29.0",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"axios": "^1.15.2",
"bcryptjs": "^3.0.3",
"bullmq": "^5.76.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"openai": "^6.36.0",
"opossum": "^9.0.0",
"pdf-parse": "^2.4.5",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"rate-limit-redis": "^4.3.1",
"redis": "^5.11.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.19.0",
"xss": "^1.0.15",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/autocannon": "^7.12.7",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.0",
"@types/opossum": "^8.1.9",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^4.1.4",
"autocannon": "^8.0.0",
"prisma": "^7.7.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}