mod-logs/package.json
Naomi Carrigan b59b1112ee
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 31s
chore: postinstall generate db
2025-01-23 02:05:55 -08:00

35 lines
827 B
JSON

{
"name": "social-media-bridge",
"version": "0.0.0",
"description": "",
"main": "prod/index.js",
"type": "module",
"engines": {
"node": "22",
"pnpm": "10"
},
"scripts": {
"postinstall": "prisma generate",
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"start": "op run --env-file='./prod.env' -- node prod/index.js",
"test": "echo 'No tests yet!' && exit 0"
},
"keywords": [],
"author": "",
"license": "See license in LICENSE.md",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.1.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "22.10.7",
"eslint": "9.18.0",
"prisma": "6.2.1",
"typescript": "5.7.3"
},
"dependencies": {
"@fastify/formbody": "8.0.2",
"@prisma/client": "6.2.1",
"fastify": "5.2.1"
}
}