-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
72 lines (72 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dgraph-js",
"version": "24.0.0",
"description": "Official javascript client for Dgraph",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dgraph-io/dgraph-js.git"
},
"bugs": {
"url": "https://github.com/dgraph-io/dgraph-js/issues"
},
"homepage": "https://github.com/dgraph-io/dgraph-js#readme",
"files": [
"lib",
"generated"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf coverage",
"rm": "rm -fr node_modules package-lock.json yarn.lock",
"build:protos:msgs": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --js_out=import_style=commonjs,binary:./generated/ --ts_out=service=false:./generated/ --proto_path=./protos/ api.proto",
"build:protos:srvs": "grpc_tools_node_protoc --grpc_out=grpc_js:./generated/ --proto_path=./protos/ api.proto",
"build:protos": "yarn build:protos:msgs && yarn build:protos:srvs",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint -c .eslintrc.js --ext .ts .",
"lint:fix": "eslint . --ext .ts --fix",
"pretest": "yarn lint",
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.0",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.12.4",
"install-peers": "^1.0.4",
"jest": "^29.7.0",
"jest-teamcity": "^1.12.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-protoc-gen": "^0.15.0",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.2",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"dgraph-js": "^21.3.1",
"eslint-plugin-lodash": "^7.4.0",
"google-protobuf": "^3.21.4",
"is-base64": "^1.1.0",
"url-parse": "^1.5.10"
}
}