forked from Servineo/servineo-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.8 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.8 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
{
"name": "servineo-backend",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Servineo/servineo-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Servineo/servineo-backend/issues"
},
"homepage": "https://github.com/Servineo/servineo-backend#readme",
"dependencies": {
"@google-cloud/local-auth": "^2.1.0",
"@types/multer": "^2.0.0",
"@types/node": "^24.7.2",
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"firebase-admin": "^13.6.0",
"google-auth-library": "^10.4.1",
"googleapis": "^166.0.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^3.0.2",
"mongodb": "^6.20.0",
"mongoose": "^8.19.3",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nanoid": "^5.1.6",
"next-auth": "^4.24.13",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.10",
"otplib": "^12.0.1",
"pdfkit": "^0.17.2",
"qrcode": "^1.5.4",
"stripe": "^19.1.0",
"swagger-jsdoc": "^6.2.8",
"typescript": "^5.9.3",
"ua-parser-js": "^2.0.6"
},
"devDependencies": {
"@eslint/css": "^0.11.1",
"@eslint/js": "^9.36.0",
"@eslint/markdown": "^7.3.0",
"@types/bcrypt": "^6.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "^3.0.1",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.6.1",
"@types/node-fetch": "^2.6.13",
"@types/nodemailer": "^7.0.3",
"@types/pdfkit": "^0.17.3",
"@types/qrcode": "^1.5.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.17",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^7.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
}
}