-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "poc-apollo-v4-graphql",
"version": "1.0.0",
"description": "A well-defined GraphQL Modules API using Apollo Server 4",
"type": "module",
"scripts": {
"start": "npm run compile && node --experimental-specifier-resolution=node dist/server.js",
"compile": "npm run graphql-types-generate && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"graphql-types-generate": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sasmita07/poc-apollo-v4-graphql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sasmita07/poc-apollo-v4-graphql/issues"
},
"homepage": "https://github.com/Sasmita07/poc-apollo-v4-graphql#readme",
"dependencies": {
"@apollo/server": "^4.10.0",
"axios": "^1.6.5",
"graphql": "^16.8.1",
"graphql-modules": "^2.3.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/graphql-modules-preset": "^4.0.4",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-resolvers": "^4.0.4",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.10.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}