-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
36
37
{
"name": "graphql-countries",
"version": "0.1.0",
"main": "index.js",
"author": "Alan Harper <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": "12.x"
},
"dependencies": {
"@types/aws-lambda": "^8.10.64",
"apollo-server-lambda": "^2.15.1",
"graphql": "^15.3.0",
"libhoney": "^2.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.8",
"@graphql-codegen/typescript": "1.23.0",
"@homebound/graphql-typescript-simple-resolvers": "1.47.0",
"@types/jest": "26.0.24",
"apollo-server-testing": "2.25.3",
"jest": "26.6.3",
"prettier": "2.7.1",
"ts-jest": "26.5.6",
"ts-node": "8.10.2",
"typescript": "4.7.4"
},
"scripts": {
"start": "tsc --watch & netlify dev",
"build": "tsc && cp schema.graphql build/functions/graphql",
"graphql-code-gen": "graphql-codegen --config codegen.yml",
"graphql-code-gen:watch": "graphql-codegen --config codegen.yml --watch",
"test": "jest",
"test:watch": "jest --watch"
}
}