-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@hhbttl/gateway",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node -r tsconfig-paths/register ./src/index.ts",
"docker:mongo": "docker-compose -f ./docker/mongo-compose.yml up --remove-orphans -d",
"test": "jest",
"apollo:push": "yarn apollo service:push --endpoint=http://localhost:4000/graphql"
},
"dependencies": {
"dataloader": "2.0.0",
"dotenv": "8.2.0",
"fastify": "2.11.0",
"fastify-compress": "2.0.0",
"fastify-cors": "3.0.1",
"fastify-gql": "2.2.0",
"graphql": "14.5.8",
"js-base64": "2.5.1",
"mongoose": "5.8.9",
"ramda": "0.26.1",
"reflect-metadata": "0.1.13",
"type-graphql": "0.17.6"
},
"devDependencies": {
"@types/dotenv": "8.2.0",
"@types/jest": "24.0.25",
"@types/js-base64": "2.3.1",
"@types/mongoose": "5.5.41",
"@types/ramda": "0.26.39",
"@types/supertest": "2.0.8",
"apollo": "2.21.3",
"jest": "24.9.0",
"mongodb-memory-server": "6.2.1",
"nodemon": "2.0.2",
"supertest": "4.0.2",
"ts-jest": "24.3.0",
"ts-node": "8.5.4",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.7.4"
},
"resolutions": {
"graphql": "14.5.8"
}
}