Skip to content

Commit bf5f502

Browse files
committed
initial commit
0 parents  commit bf5f502

File tree

6 files changed

+2453
-0
lines changed

6 files changed

+2453
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

data.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"post": []
3+
}

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "learning-graphql-relay",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"dev": "tsx watch src/server.ts"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"devDependencies": {
13+
"@types/node": "^20.14.9",
14+
"tsup": "^8.1.0",
15+
"tsx": "^4.15.7",
16+
"typescript": "^5.5.2"
17+
},
18+
"dependencies": {
19+
"apollo-server": "^3.13.0",
20+
"graphql": "^16.9.0",
21+
"graphql-relay": "^0.10.1"
22+
}
23+
}

0 commit comments

Comments
 (0)