forked from avishwakarma/dgraph-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "dgraph-orm",
"version": "2.0.0",
"description": "Simplified schema creation, queries and mutations for Dgraph.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc -w",
"start": "nodemon -e ts example --exec ts-node",
"build": "tsc -p "
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashokvishwakarma/dgraph-orm.git"
},
"keywords": [
"dgraph-orm",
"dgraph-schema"
],
"author": "Ashok Vishwakarma <akvlko@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashokvishwakarma/dgraph-orm/issues"
},
"homepage": "https://ashokvishwakarma.github.io/dgraph-orm",
"devDependencies": {
"@types/google-protobuf": "^3.15.3",
"@types/node": "^14.2.4",
"nodemon": "^2.0.9",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"dgraph-js": "^21.3.1",
"ntypescript": "1.201706190042.1",
"protobufjs": "^6.11.2",
"tsc": "^2.0.3"
}
}