-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1005 Bytes
/
package.json
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
{
"name": "hybrid-js",
"version": "1.0.0",
"description": "client-side implementation of various vector rank fusion algorithms",
"main": "dist/app.js",
"scripts": {
"build": "tsc && npm run lint",
"lint": "tsc --noEmit && eslint \"*/*.{js,ts}\" --quiet --fix",
"load": "node dist/utils/loadMarco.js",
"start": "node dist/app.js",
"test": "node --no-warnings=ExperimentalWarning --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "joey whelan",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"csv-parse": "^5.5.6",
"JSONStream": "^1.3.5",
"redis": "^4.7.0"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/axios": "^0.14.4",
"@types/csv-parse": "^1.2.5",
"@types/jsonstream": "^0.8.33",
"@types/redis": "^4.0.11",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"typescript-eslint": "^8.15.0"
},
"engines": {
"node": ">=18.0.0"
}
}