mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-13 10:25:49 +00:00
36 lines
924 B
JSON
36 lines
924 B
JSON
{
|
|
"name": "boilerplate-backend",
|
|
"version": "1.0.0",
|
|
"description": "The IT4C Boilerplate for backends",
|
|
"main": "build/index.ts",
|
|
"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"
|
|
},
|
|
"scripts": {
|
|
"watch": "nodemon --watch './**/*.{ts,graphql}' --exec 'node --loader ts-node/esm' src/index.ts",
|
|
"dev": "tsc-watch --noClear --onSuccess \"npm run watch\""
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-express": "^3.13.0",
|
|
"graphql": "^16.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.1",
|
|
"nodemon": "^3.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsc": "^2.0.4",
|
|
"tsc-watch": "^6.0.4",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|