mod-logs/package.json

35 lines
827 B
JSON
Raw Normal View History

2025-01-20 18:36:05 -08:00
{
"name": "social-media-bridge",
"version": "0.0.0",
"description": "",
"main": "prod/index.js",
"type": "module",
"engines": {
"node": "22",
"pnpm": "10"
},
"scripts": {
"postinstall": "prisma generate",
2025-01-20 18:36:05 -08:00
"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"
2025-01-20 18:36:05 -08:00
},
"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": {
2025-01-22 17:02:16 -08:00
"@fastify/formbody": "8.0.2",
2025-01-20 18:36:05 -08:00
"@prisma/client": "6.2.1",
"fastify": "5.2.1"
}
}