-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "com.bibisam06.petbuddy",
"version": "1.0.0",
"description": "backend repository for pet buddy project",
"homepage": "https://github.com/pet-buddy/PetBuddy_Backend#readme",
"bugs": {
"url": "https://github.com/pet-buddy/PetBuddy_Backend/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pet-buddy/PetBuddy_Backend.git"
},
"license": "MIT",
"author": "bibisam06",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"build": "cross-env NODE_ENV=production babel src -d dist",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "cross-env NODE_ENV=development babel src --out-dir dist",
"ci": "cross-env NODE_ENV=production node index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.839.0",
"@redis/client": "^1.6.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.8.0",
"babel": "^6.23.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"docker": "^1.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.1",
"multer-s3": "^2.10.0",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"node-schedule": "^2.1.1",
"parcel": "^2.13.3",
"pg": "^8.15.6",
"pg-hstore": "^2.3.4",
"postgres": "^3.4.5",
"redis": "^4.7.1",
"redis-cli": "^2.1.2",
"sequelize": "^6.37.5",
"socket.io": "^4.8.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@types/swagger-ui-express": "^4.1.8",
"@types/yamljs": "^0.2.34",
"nodemon": "^3.1.9",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}