-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.53 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.53 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "deploy-center-server",
"version": "2.1.2",
"description": "Comprehensive Deployment Platform - Backend API",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"start": "NODE_ENV=production npm run build && node -r ./tsconfig-paths-bootstrap.js dist/index.js",
"start:prod": "NODE_ENV=production npm run build && node dist/index.js",
"test": "jest --coverage",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rimraf dist",
"upgrade": "ncu -u && npm install",
"prebuild": "npm run clean"
},
"keywords": [
"deployment",
"ci-cd",
"automation",
"webhook",
"github",
"devops",
"continuous-deployment",
"continuous-integration",
"deployment-automation",
"nodejs",
"typescript",
"rest-api",
"socket-io",
"jwt-authentication",
"rbac",
"sequelize",
"mysql",
"ssh-keys",
"deployment-platform",
"github-webhooks"
],
"author": "Deploy Center Team",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/FutureSolutionDev/Deploy-Center-Server.git"
},
"bugs": {
"url": "https://github.com/FutureSolutionDev/Deploy-Center-Server/issues"
},
"homepage": "https://github.com/FutureSolutionDev/Deploy-Center-Server#readme",
"files": [
"dist",
"src",
"CHANGELOG.md",
"LICENSE",
"LICENSES",
"README.md",
"tsconfig.json",
"tsconfig-paths-bootstrap.js",
".env.example"
],
"dependencies": {
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.3.1",
"fs-extra": "^11.3.3",
"helmet": "^8.1.0",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.3",
"mariadb": "^3.4.5",
"morgan": "^1.10.1",
"mysql2": "^3.16.0",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"qrcode": "^1.5.4",
"sequelize": "^6.37.7",
"socket.io": "^4.8.3",
"speakeasy": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/csrf": "^3.1.3",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.0.3",
"@types/nodemailer": "^7.0.4",
"@types/passport-jwt": "^4.0.1",
"@types/qrcode": "^1.5.6",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}