-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "shenanigan-server",
"version": "0.0.1",
"description": "backend for Shenanigan Dapp",
"main": "index.js",
"repository": "https://github.com/ShenaniganDApp/server.git",
"author": "Shenanigan Team",
"license": "GNU",
"scripts": {
"start:server": "nodemon ./src/index.ts",
"schema:local": "get-graphql-schema http://localhost:8080/graphql > ./src/graphql/schema/schema.graphql"
},
"dependencies": {
"@entria/graphql-mongoose-loader": "^4.3.0",
"@types/graphql-relay": "^0.4.11",
"@types/node": "^13.9.1",
"bcryptjs": "^2.4.3",
"dataloader": "^2.0.0",
"graphql": "^14.6.0",
"graphql-playground-middleware-koa": "^1.6.17",
"graphql-relay": "^0.6.0",
"graphql-relay-subscription": "^0.2.1",
"graphql-subscriptions": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.12.1",
"koa-bodyparser": "^4.3.0",
"koa-graphql": "^0.8.0",
"koa-graphql-batch": "^1.1.0",
"koa-router": "^9.0.1",
"mongoose": "^5.9.3",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.6",
"get-graphql-schema": "^2.1.2",
"graphql-cli": "^3.0.14",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}