-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "spendenr-ai-d",
"private": true,
"version": "2.0.0",
"description": "Orga classification and OCR for donations",
"main": "src/app.js",
"type": "module",
"engines": {
"node": ">=23.0.0"
},
"scripts": {
"start:prod": "cross-env NODE_ENV=production bun src/app.js",
"start:dev": "npm run lint && cross-env NODE_ENV=development bun src/app.js",
"start:test": "cross-env NODE_ENV=test bun tests/sampleRequest.js",
"start:asserts": "cross-env NODE_ENV=test bun tests/asserts.js",
"start:remove-success": "cross-env NODE_ENV=test bun tests/removeSuccessful.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"author": "TheShad0w",
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/Spendenr-AI-d.git"
},
"bugs": {
"url": "https://github.com/NullDev/Spendenr-AI-d/issues"
},
"homepage": "https://github.com/NullDev/Spendenr-AI-d",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.26.10",
"@types/bun": "^1.2.5",
"cross-env": "^7.0.3",
"eslint": "^9.23.0"
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/helmet": "^13.0.1",
"fastify": "^5.2.1",
"fuzzball": "^2.2.1",
"node-tesseract-ocr": "^2.2.1"
}
}