kidshift-be/package.json

41 lines
994 B
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",
"devDependencies": {
2024-06-15 08:12:13 +00:00
"@types/chalk": "^2.2.0",
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-15 07:04:23 +00:00
"@types/node": "^20.14.2",
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-15 07:04:23 +00:00
"nodemon": "^3.1.3",
2024-06-16 07:10:55 +00:00
"prisma": "^5.15.0",
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",
"typescript": "^5.4.5"
2024-06-15 07:11:23 +00:00
},
"dependencies": {
2024-06-16 07:10:55 +00:00
"@prisma/client": "^5.15.0",
2024-06-16 12:24:54 +00:00
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
2024-06-15 08:12:13 +00:00
"chalk": "^5.3.0",
2024-06-15 07:21:43 +00:00
"express": "^4.19.2",
"inversify": "^6.0.2",
2024-06-15 15:43:57 +00:00
"jsonwebtoken": "^9.0.2",
2024-06-16 06:09:03 +00:00
"live-server": "^1.2.2",
2024-06-15 07:21:43 +00:00
"reflect-metadata": "^0.2.2"
2024-06-15 07:04:23 +00:00
}
2024-06-15 06:44:38 +00:00
}