forked from dataXdevelopment/CentralDogma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.3.1",
"@graphql-tools/load": "^7.3.2",
"@graphql-tools/schema": "^8.3.0",
"amqplib": "^0.8.0",
"apollo-server-core": "^3.4.0",
"apollo-server-express": "^3.4.0",
"express": "^4.17.1",
"graphql": "^15.6.1",
"graphql-redis-subscriptions": "^2.4.0",
"ioredis": "^4.28.0",
"subscriptions-transport-ws": "^0.9.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-document-nodes": "2.1.4",
"@graphql-codegen/typescript-resolvers": "2.3.0",
"@types/amqplib": "^0.8.2",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.27.8",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"concurrently": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-xo": "^0.38.0",
"prettier": "2.4.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"scripts": {
"dev": "concurrently npm:server npm:codegen-watch",
"server": "tsnd --respawn src/index.ts",
"codegen": "graphql-codegen --config codegen.yml",
"codegen-watch": "graphql-codegen --watch --config codegen.yml"
}
}