ifms-printer-manager/package.json

35 lines
837 B
JSON
Raw Normal View History

2023-06-15 11:39:13 +00:00
{
"name": "ifms-healthtracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"start": "node dist",
"dev": "nodemon --ext js,ts,mts,mjs,json,prisma ./src/index.ts --exec ts-node-esm"
},
"keywords": [],
"author": "Douglas Barone",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.5",
"nodemon": "^2.0.22",
"prisma": "^4.15.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@prisma/client": "^4.15.0",
"body-parser": "^1.20.2",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"ldapts": "^4.2.6"
}
}