-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "sample-graphql",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "concurrently \"yarn codegen --watch\" \"nodemon src/index.ts\"",
"codegen": "graphql-codegen --config codegen.yml",
"test": "jest"
},
"dependencies": {
"apollo-server": "^2.17.0",
"graphql": "^15.3.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@graphql-codegen/cli": "1.17.8",
"@graphql-codegen/introspection": "1.17.8",
"@graphql-codegen/typed-document-node": "^1.17.9",
"@graphql-codegen/typescript": "1.17.8",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-resolvers": "^1.17.9",
"@graphql-typed-document-node/core": "^3.1.0",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"apollo-server-testing": "^2.17.0",
"concurrently": "^5.3.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}