-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "falkordb",
"version": "6.2.7",
"description": "A FalkorDB javascript library",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"test": "npx jest",
"build:test-utils": "npm run build -w ./packages/test-utils",
"build:tests-tools": "npm run build:client && npm run build:test-utils",
"build": "tsc",
"lint": "eslint .",
"build-all": "npm run build:test-utils && npm run build",
"documentation": "npm run documentation -ws --if-present",
"gh-pages": "gh-pages -d ./documentation -e ./documentation -u 'documentation-bot <documentation@bot>'"
},
"repository": {
"type": "git",
"url": "git://github.com/falkordb/falkordb-ts.git"
},
"bugs": {
"url": "https://github.com/falkordb/falkordb-ts/issues"
},
"homepage": "https://github.com/falkordb/falkordb-ts",
"keywords": [
"falkordb"
],
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"release-it": "^18.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@redis/client": "^1.6.0",
"cluster-key-slot": "1.1.2",
"generic-pool": "^3.9.0",
"lodash": "^4.17.21",
"redis": "^4.7.0"
}
}