-
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.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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
{
"name": "packing-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=18 <23"
},
"scripts": {
"test": "node --check ./src/server.js",
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Packing-App/Packing-Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Packing-App/Packing-Server/issues"
},
"homepage": "https://github.com/Packing-App/Packing-Server#readme",
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"apn": "^2.2.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.8.4",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb": "^6.15.0",
"mongoose": "^8.12.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"multer-s3": "^2.10.0",
"node-cron": "^3.0.2",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"socket.io": "^4.7.2",
"winston": "^3.17.0"
},
"devDependencies": {
"eslint": "^9.23.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3"
}
}