initial commit

This commit is contained in:
2024-12-21 16:44:53 -08:00
commit f9bae7dc07
16 changed files with 7309 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "project-inter-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "npm run generate && tsc",
"start": "npm run compile && node ./dist/index.js",
"generate": "graphql-codegen --config codegen.ts"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-resolvers": "4.4.1",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"private": true,
"dependencies": {
"@apollo/server": "^4.11.2",
"graphql": "^16.10.0"
}
}