-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "weasel-dgraph",
"version": "0.3.4",
"description": "A direct GraphQL \"converter\" to Dgraph's `GraphQL+-` language.",
"main": "index.ts",
"scripts": {
"start": "nodemon --exec ts-node index.ts",
"buildAndRun": "nodemon --exec tsc -p .",
"startTestServer": "NODE_ENV=test nodemon --exec ts-node index.ts",
"test": "NODE_ENV=test jest",
"local:test": "NODE_ENV=local_test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichelDiz/Weasel.git"
},
"keywords": [
"dgraph",
"graphql",
"graphql+-",
"dql",
"ast"
],
"author": "Michel Conrado Diz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MichelDiz/Weasel/issues"
},
"homepage": "https://github.com/MichelDiz/Weasel#readme",
"devDependencies": {
"@types/redis": "^4.0.11",
"@apollo/client": "^3.8.5",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@types/node-fetch": "^2.6.6",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"react": "^18.2.0"
},
"dependencies": {
"apollo-server-express": "^3.12.1",
"dgraph-js-http": "^23.0.0-rc1",
"express": "^4.18.1",
"graphql": "^16.8.1",
"ioredis": "^5.3.2",
"jaeger-client": "^3.19.0",
"opentracing": "^0.14.7"
}
}