-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.23 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "alian-hub-v3",
"version": "14.7.0",
"description": "AlianHub — the open-source, self-hosted project management system. Multi-tenant, real-time, customizable. An open-source alternative to Jira, Asana, Monday, Linear, and ClickUp.",
"keywords": [
"project-management",
"task-management",
"self-hosted",
"open-source",
"kanban",
"gantt",
"scrum",
"agile",
"collaboration",
"timesheet",
"multi-tenant",
"real-time",
"socket-io",
"nodejs",
"vuejs",
"mongodb",
"electron",
"pms",
"jira-alternative",
"asana-alternative",
"monday-alternative",
"linear-alternative",
"clickup-alternative",
"trello-alternative"
],
"homepage": "https://alianhub.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aliansoftwareteam/AlianHub-Project-Management-System.git"
},
"bugs": {
"url": "https://github.com/aliansoftwareteam/AlianHub-Project-Management-System/issues",
"email": "support@aliansoftware.net"
},
"main": "index.js",
"engines": {
"node": "20.x"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.96.0",
"@aws-sdk/client-iam": "3.864.0",
"@aws-sdk/client-s3": "3.864.0",
"@aws-sdk/client-ses": "^3.1045.0",
"@aws-sdk/s3-request-presigner": "3.864.0",
"@socket.io/admin-ui": "^0.5.1",
"archiver": "7.0.1",
"atob": "2.1.2",
"axios": "^1.12.2",
"bcrypt": "5.1.1",
"body-parser": "1.20.3",
"chargebee": "2.19.0",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-rate-limit": "^7.4.1",
"extract-zip": "2.0.1",
"firebase-admin": "13.0.1",
"helmet": "^8.0.0",
"html-to-text": "9.0.5",
"jsonwebtoken": "9.0.2",
"luxon": "3.5.0",
"mammoth": "^1.12.0",
"migrate-mongo": "11.0.0",
"mongoose": "8.17.2",
"multer": "^2.1.1",
"node-cache": "5.1.2",
"node-schedule": "2.1.1",
"nodemailer": "6.9.16",
"openid-client": "^5.7.0",
"samlify": "^2.8.10",
"otplib": "^12.0.1",
"pdf-parse": "^2.4.5",
"pdfmake": "^0.2.7",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"socket.io": "4.8.1",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "5.0.1",
"ua-parser-js": "2.0.0",
"winston": "3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"xlsx": "^0.18.5",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@authenio/samlify-xsd-schema-validator": "^1.0.5"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:naming": "jest tests/naming-conventions.test.js --testPathIgnorePatterns=/node_modules/",
"start": "node server.js",
"nodemon": "nodemon index.js",
"check-version": "node check-version.js",
"basic-install": "node installation.js && npm run start",
"setup": "node scripts/dev.js",
"dev": "node scripts/dev.js --skip-install",
"setup:reset": "node scripts/dev.js --force",
"lint:commits": "commitlint --from ${BASE_BRANCH:-origin/staging} --to HEAD --verbose"
},
"author": "Alian Software <https://alianhub.com>",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"jest": "^30.4.2",
"nodemon": "^3.1.0"
}
}