-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "unibon-backend",
"version": "1.0.0",
"description": "Simple Node.js backend for image OCR using OpenAI API (TypeScript version)",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "node --loader ts-node/esm server.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest -c test/jest.config.ts --testPathIgnorePatterns=e2e",
"test:all": "NODE_OPTIONS=--experimental-vm-modules jest -c test/jest.config.ts",
"test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest -c test/jest.config.ts --testPathPattern=e2e"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"better-sqlite3": "^12.5.0",
"dotenv": "^16.6.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [],
"author": "",
"license": "ISC"
}