-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"engines": {
"node": ">=20.6.0"
},
"name": "task-pro-backend",
"version": "1.0.0",
"description": "Task pro application back-end based on ts",
"main": "app.js",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"build-w": "tsc && tsc-alias -w",
"dev": "nodemon ./dist/app.js",
"start": "tsc && tsc-alias && node ./dist/app.js"
},
"keywords": [],
"author": "Ann Denysenko",
"license": "ISC",
"dependencies": {
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"cloudinary": "^2.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"gravatar": "^1.8.2",
"jimp": "^0.22.12",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.14",
"query-string": "^9.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/gravatar": "^1.8.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^22.0.2",
"@types/nodemailer": "^6.4.15",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.8.3",
"typescript-eslint": "^8.0.0"
}
}