-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 752 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
{
"name": "docpilot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mongoose": "^9.6.1",
"multer": "^2.1.1",
"openai": "^6.35.0",
"pdf-parse-new": "^2.1.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/mongoose": "^5.11.97",
"@types/multer": "^2.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3"
}
}