41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
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",
|
|
"clean:build": "rm -rf ./build/*",
|
|
"clean:data": "rm -rf ./data/*"
|
|
},
|
|
"author": "James Brumond <https://jbrumond.me>",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^20.4.2",
|
|
"json-schema": "^0.4.0",
|
|
"pino-pretty": "^10.1.0",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@doc-utils/color-themes": "^0.1.15",
|
|
"@fastify/compress": "^6.4.0",
|
|
"@fastify/etag": "^4.2.0",
|
|
"@fastify/formbody": "^7.4.0",
|
|
"argon2": "^0.30.3",
|
|
"fast-xml-parser": "^4.2.6",
|
|
"fastify": "^4.19.2",
|
|
"generic-pool": "^3.9.0",
|
|
"luxon": "^3.3.0",
|
|
"mustache": "^4.2.0",
|
|
"openid-client": "^5.4.3",
|
|
"pino": "^8.14.1",
|
|
"sqlite3": "^5.1.6",
|
|
"yaml": "^2.3.1"
|
|
}
|
|
}
|