initial package.json

This commit is contained in:
Moriz Wahl 2023-11-29 10:47:02 +01:00
parent 852e7f0346
commit e7b00034d3
2 changed files with 1546 additions and 0 deletions

1524
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "boilerplate-backend",
"version": "1.0.0",
"description": "The IT4C Boilerplate for backends",
"main": "build/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/boilerplate-backend.git"
},
"author": {
"name": "Moriz Wahl"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IT4Change/boilerplate-backend/issues"
},
"dependencies": {
"apollo-server-express": "^3.13.0",
"graphql": "^16.8.1"
}
}