forked from tcampb/calendgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1017 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
35
{
"name": "calendgraph",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "graphql-codegen && tsc",
"start": "node ./dist/index.js",
"dev": "ts-node src/index.ts",
"debug": "node --inspect-brk -r ts-node/register/transpile-only src/index.ts",
"generate": "graphql-codegen"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.0.0",
"@graphql-tools/load": "^7.0.0",
"@graphql-tools/schema": "^8.0.0",
"apollo-server": "^3.0.2",
"axios": "^0.21.1",
"graphql": "^15.5.1"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/node": "^16.4.5",
"@graphql-codegen/cli": "1.21.7",
"typescript": "^4.1.6",
"ts-node": "^10.1.0",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-resolvers": "1.20.0",
"@graphql-codegen/introspection": "1.18.2"
}
}