kidshift-be/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2024-06-15 06:44:38 +00:00
{
"name": "kidshift-be",
"version": "1.0.0",
"description": "",
2024-06-15 07:19:06 +00:00
"type": "module",
2024-06-15 06:44:38 +00:00
"main": "index.js",
"scripts": {
2024-06-15 07:19:06 +00:00
"start": "npx tsx src/index.ts",
2024-06-15 08:18:07 +00:00
"build": "tsc",
2024-06-15 06:44:38 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
2024-06-15 07:04:23 +00:00
"license": "ISC",
"dependencies": {
2024-06-23 06:53:19 +00:00
"@prisma/client": "^5.15.1",
2024-06-24 04:18:27 +00:00
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
2024-07-18 17:20:24 +00:00
"cors": "^2.8.5",
"express": "^4.19.2",
"inversify": "^6.0.2",
"jsonwebtoken": "^9.0.2",
"live-server": "^1.2.2",
2024-07-04 14:05:33 +00:00
"minio": "^8.0.1",
"node-cron": "^3.0.3",
2024-08-07 16:23:29 +00:00
"reflect-metadata": "^0.2.2",
"tsc": "^2.0.4"
},
2024-06-15 07:04:23 +00:00
"devDependencies": {
2024-06-24 04:18:27 +00:00
"@types/bcryptjs": "^2.4.6",
"@types/chalk": "^2.0.0",
2024-08-07 16:25:19 +00:00
"@types/cors": "^2.8.17",
2024-06-15 07:11:23 +00:00
"@types/express": "^4.17.21",
2024-06-16 06:09:03 +00:00
"@types/jsonwebtoken": "^9.0.6",
2024-06-23 06:53:19 +00:00
"@types/node": "^20.14.8",
2024-06-19 06:29:25 +00:00
"@types/node-cron": "^3.0.11",
2024-06-17 03:45:29 +00:00
"@types/swagger-jsdoc": "^6.0.4",
2024-06-17 03:43:25 +00:00
"@types/swagger-ui-express": "^4.1.6",
2024-06-23 06:53:19 +00:00
"nodemon": "^3.1.4",
2024-08-07 16:25:34 +00:00
"license-checker": "^25.0.1",
2024-06-23 06:53:19 +00:00
"prisma": "^5.15.1",
2024-06-17 03:43:25 +00:00
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
2024-06-15 07:04:23 +00:00
"ts-node": "^10.9.2",
2024-06-23 06:53:19 +00:00
"typescript": "^5.5.2"
2024-06-15 07:04:23 +00:00
}
2024-06-15 06:44:38 +00:00
}