-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "taskora-api",
"version": "1.0.0",
"description": "Taskora - A REST API for modern task and project management that helps you organize work efficiently. Create projects, manage tasks, set deadlines, and track progress with an intuitive interface.",
"main": "index.js",
"scripts": {
"build": "tsc && npm run post:build",
"post:build": "cpy src/templates/**/*.html dist/templates",
"dev": "concurrently \"tsc-watch --onSuccess 'node ./dist/index.js'\" \"rm -rf dist\" \"npm run build\"",
"start": "NODE_ENV=production node dist/index.js",
"start:worker": "node dist/workers/email.worker.js",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"db:migrate": "prisma migrate dev --schema=src/database/prisma/schema.prisma",
"db:generate": "prisma generate --schema=src/database/prisma/schema.prisma",
"db:push": "prisma db push --schema=src/database/prisma/schema.prisma",
"db:studio": "prisma studio --schema=src/database/prisma/schema.prisma",
"clean": "rm -rf dist logs/*"
},
"keywords": [
"taskora",
"taskora-api",
"REST API",
"task management",
"project management",
"task tracking",
"project tracking",
"nodejs",
"express",
"typescript",
"prisma",
"mysql",
"redis"
],
"author": "Mohamed Magdy",
"license": "MIT",
"dependencies": {
"@bull-board/api": "^6.12.7",
"@bull-board/express": "^6.12.7",
"@prisma/client": "^6.3.1",
"axios": "^1.12.1",
"bcryptjs": "^2.4.3",
"bullmq": "^5.45.2",
"cloudinary": "^2.7.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"google-auth-library": "^9.15.1",
"helmet": "^8.0.0",
"jsdom": "^26.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.10",
"redis": "^4.7.0",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.0",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.1",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/swagger-ui-express": "^4.1.7",
"concurrently": "^9.1.2",
"cpy-cli": "^5.0.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prisma": "^6.3.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0"
}
}