dashboard/package.json

33 lines
825 B
JSON

{
"name": "@templates/nodejs-typescript-service",
"version": "1.0.0",
"description": "Template project for creating new Node.js / TypeScript services",
"main": "src/index.ts",
"private": true,
"repository": {
"type": "git",
"url": "git@git.jbrumond.me:templates/nodejs-typescript-service.git"
},
"scripts": {
"tsc": "tsc --build"
},
"author": "James Brumond <https://jbrumond.me>",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@fastify/compress": "^6.4.0",
"@fastify/etag": "^4.2.0",
"@fastify/formbody": "^7.4.0",
"argon2": "^0.30.3",
"fastify": "^4.19.2",
"luxon": "^3.3.0",
"openid-client": "^5.4.3",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1",
"yaml": "^2.3.1"
}
}