-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1023 Bytes
/
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
{
"name": "inkeep-quickstart-search-chat-api-graphql",
"version": "0.0.1",
"description": "Quickstart for calling the Inkeep Search and Chat GraphQL APIs",
"main": "main.ts",
"repository": "https://github.com/inkeep/quick-start-search-chat-api.git",
"author": "Me",
"license": "MIT",
"private": true,
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@types/node": "^20.4.2",
"graphql": "^16.7.1",
"graphql-cli": "^4.1.0",
"node-fetch-commonjs": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"xregexp": "^5.1.1"
},
"dependencies": {
"@urql/core": "^4.1.1",
"dotenv": "^16.3.1",
"graphql-ws": "^5.14.0",
"ws": "^8.13.0"
},
"scripts": {
"dev": "ts-node src/main.ts",
"build": "tsc",
"start": "node dist/app.js",
"inkeep-chat-api-codegen": "graphql-codegen --config inkeep-chat-api-codegen.ts",
"inkeep-generate-sdl": "ts-node utils/generateInkeepGraphQLSdl.ts"
}
}