-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.12 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
{
"name": "510k-sift",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node --project tsconfig.json --files src/server.ts",
"start:dev": "nodemon --config nodemon.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"ingest": "ts-node --project tsconfig.json --files src/ingest/index.ts",
"ingest:createdb": "npm run ingest -- --command=createdb",
"ingest:missing-statements": "npm run ingest -- --command=getMissingStatements",
"ingest:getDownloadUrls": "npm run ingest -- --command=getDownloadUrls",
"ingest:download": "npm run ingest -- --command=download",
"ingest:download-codes": "npm run ingest -- --command=downloadProductCodes",
"ingest:create-applicants": "npm run ingest -- --command=createApplicants",
"extract": "ts-node --project tsconfig.json --files src/extract/index.ts",
"extract:pdf-to-json": "npm run extract -- --command=convertPdfToJson",
"extract:create-commands": "npm run extract -- --command=createBashConverts",
"extract:calculate-tokens": "npm run extract -- --command=calculateTokens",
"extract:ifu-form-3881": "npm run extract -- --command=extractIFUForm3881",
"extract:ifu-embeddings": "npm run extract -- --command=extractIFUEmbeddings",
"extract:related-ks": "npm run extract -- --command=extractRelatedKNumbers",
"extract:dump-json": "npm run extract -- --command=dumpToJson",
"extract:import-json": "npm run extract -- --command=importFromJson",
"extract:create-device-embeddings": "npm run extract -- --command=createDeviceEmbeddingBash",
"extract:create-vectordb": "npm run extract -- --command=createVectorDB"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Setfive/510k-sift.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Setfive/510k-sift/issues"
},
"homepage": "https://github.com/Setfive/510k-sift#readme",
"dependencies": {
"@angular/cli": "^16.1.3",
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/s3-request-presigner": "^3.332.0",
"@qdrant/js-client-rest": "^1.3.0",
"@types/cheerio": "^0.22.31",
"@types/ndarray": "^1.0.11",
"@types/numjs": "^0.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"command-line-args": "^5.2.1",
"csv-parse": "^5.3.10",
"dotenv": "^16.3.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"moment": "^2.29.4",
"mysql": "^2.18.1",
"nodemon": "^2.0.22",
"openai": "^3.3.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"typeorm": "^0.3.16",
"typescript": "^5.0.4",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/express": "^4.17.17",
"@types/uuid": "^9.0.1",
"@types/yauzl": "^2.10.0"
}
}